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é.
/* -*-ePiX-*- */ /* lissajous.c -- May 29, 2002 */ #include "epix.h" using namespace ePiX; P f(double t) { return P(Sin(3*M_PI*t+0.5), Sin(4*M_PI*t+0.5)); } int main() { bounding_box(P(-1,-1), P(1,1)); picture(2, 2); unitlength("1in"); // offset(150,-180); begin(); grid(2,2); bold(); red(); plot(f, 0, 2, 200); arrow_camber(0.2); plain(); blue(); tan_field(f, 0, 2, 81); end(); }