Exemples de la distribution

En cliquant sur une imagette, vous accéderez au source et à l'image. En cliquant sur cette dernière, vous ouvrirez le fichier PDF associé.

calculus.xpclipping.xpcontour.xpcropplot.xpdenom.xpgeomsum.xp
koch.xp [ source ] [ fermer ]
koch.xp
/* -*-ePiX-*- */
/* koch.c -- May 29, 2002 */
#include "epix.h"
using namespace ePiX;

const int koch_seed[] = {6, 4, 0, 1, -1, 0};

int main() 
{
  bounding_box(P(-1,-1), P(1, 1));
  picture(2,2);
  unitlength("1in");

  degrees();
  for (int i=4; i <= 4; ++i)
    {
      begin();   

      fractal(cis(150), cis( 30), i, koch_seed);
      fractal(cis( 30), cis(-90), i, koch_seed);
      fractal(cis(-90), cis(150), i, koch_seed);

      if (i==1)
        {
          bold();
          red();
          fractal(cis(150), cis(30), i, koch_seed);
          black();
          plain();
        }
      end();
    }
}

levelset.xplissajous.xpnewton.xposcillator.xpparabola.xppascal.xppolar.xppole.xpshadeplot.xpslopefield.xpsphere.xpsqrt.xptorus.xpuppersum.xpweierstrass.xpwheel.xp