Hi,
It would seem that the only arc's I can successfully draw are those with
a starting angle of 0 rads. (working with OL 3.2) While the non-zero
starting angle arcs are drawn, they don't seem to be in reference to the
specified origin.
What am I missing??
Thanks!
Ed
<canvas>
<drawview width="400" height="400">
<handler name="oninit">
redraw();
</handler>
<method name="redraw">
<![CDATA[
this.clear();
this.beginPath();
moveTo(200,200);
arc(200,200,180,0,3,true);
arc(200,200,150,0,2*Math.PI,true);
arc(200,200,110,1,3,true);
arc(200,200,100,4,5,true);
this.closePath();
this.stroke();
]]>
</method>
</drawview>
</canvas>
_______________________________________________
Laszlo-user mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-user