This sounds a lot like bug LPP-1588:
http://jira.openlaszlo.org/jira/browse/LPP-1588
which was marked fixed for 3.2 -- but did the fix really get in to  
3.2? We may have put it off to 3.3. Max?

Also see
http://www.openlaszlo.org/jira/browse/LPP-2001
in which Sebastian Barthelmess, an outside contributor, seems to have  
fixed a related issue.

On Jul 13, 2006, at 9:44 AM, Rolfe, Edward wrote:

> 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

_______________________________________________
Laszlo-user mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-user

Reply via email to