|
Circ_curve cv ( Circle_2<Cartesian<NT> > c);
|
|
constructs
a curve with a CGAL circle (source and target are identical and
initialized to the leftmost point on the circle).
|
|
|
Circ_curve cv ( NT x, NT y, NT r2);
|
|
constructs a
curve corresponding to a full circle, oriented counterclockwise, with
its center at Point(x,y) and r2 as its squared radius.
|
|
|
Circ_curve cv ( NT x, NT y, NT r2, Point src, Point trgt);
|
|
constructs a
curve corresponding to an arc segment of the circle that has
its center at Point(x,y) and has r2 as its squared radius.
The arc is oriented counterclockwise and
src and trgt correspond to its source and target
points.
|