Question about Arc

Find quick help here to get you started with Hollywood
Post Reply
NathanH
Posts: 148
Joined: Sun Jul 05, 2015 1:29 am
Location: Caldwell, Idaho

Question about Arc

Post 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
plouf
Posts: 753
Joined: Sun Feb 04, 2018 11:51 pm
Location: Athens,Greece

Re: Question about Arc

Post 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
Christos
NathanH
Posts: 148
Joined: Sun Jul 05, 2015 1:29 am
Location: Caldwell, Idaho

Re: Question about Arc

Post by NathanH »

Cool, thanks!
Post Reply