Sommaire


Installer et compiler ces fichiers dans votre répertoire de travail.

c00b.c
/* ------------------------------------ */
/*  Save as :   c00b.c                  */
/* ------------------------------------ */
#include  "x_hfile.h"
/* ------------------------------------ */
int main(void)
{
 printf(" Graph the rational quadratic bezier\n\n");

    G_Rquadratic_Bezier_2d(

             i_ctrl_splot(-20,20,-10,10, 0,0,0,0,0,0),

             i_pt2d(05.,00.),
             i_pt2d(05.,05.),
             i_pt2d(00.,05.)  );

 printf(" To see the curve, "
        "open the file \"a_main.plt\" with Gnuplot.\n\n");

 stop();

 return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */


Dessiner la courbe sur le cercle.