Page 1 of 1

Question about Arc

Posted: Thu Aug 27, 2026 8:17 pm
by NathanH
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

Re: Question about Arc

Posted: Thu Aug 27, 2026 11:30 pm
by plouf
with vector path library, CurveTo() command

example

Code: Select all

StartPath(1)
CurveTo(1,0,0,100,100,0,100)
DrawPath(1,100,100,#RED)


Repeat
	WaitEvent()
Forever

Re: Question about Arc

Posted: Fri Aug 28, 2026 12:38 am
by NathanH
Cool, thanks!