<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi ! How can I draw an ellipse without a portion of it (without a
slice)??<br>
I have a start angle and end angle of the ellipse refered to the
centre, but if I try with:<br>
<pre><i>        cairo_save(cr)</i>
        <i><i>cairo_</i></i><i>translate(cr,x + width / 2., y + height / 2.);
</i><i> </i><i><i><i><i> cairo_</i></i></i></i><i>scale(cr,1. * (width / 2.), 1. * (height / 2.));
</i><i>        </i><i><i><i><i>cairo_</i></i></i></i><i>arc(cr,0., 0., 1., S_ANGLE, E_ANGLE);
        cairo_restore(cr);
        cairo_stroke(cr);
</i>the ellipse drawn isn't correct, because in scaling the coords. I scale the angles.
How can I draw the ellipse without a correct portion of it, defined by two angles?
Thank you,
Carlo
<i> </i></pre>
<br>
</body>
</html>