Hi,
Is there a way to tell the arc drawing command not to draw the connecting chord so it really is an arc and not a pie slice? Thanks.
Nathan
Question about Arc
Re: Question about Arc
with vector path library, CurveTo() command
example
example
Code: Select all
StartPath(1)
CurveTo(1,0,0,100,100,0,100)
DrawPath(1,100,100,#RED)
Repeat
WaitEvent()
Forever
Christos
Re: Question about Arc
Cool, thanks!