Page 1 of 1

How do I draw a curve?

Posted: Tue Jan 30, 2024 10:23 am
by Bugala
I am wanting to draw a curve, like a bent line, but I cant figure out which command does it, surely there is a command to do this in Hollywod?

Re: How do I draw a curve?

Posted: Tue Jan 30, 2024 12:13 pm
by plouf
Arc()

also Vectorlibrary may help you has a lot

Re: How do I draw a curve?

Posted: Tue Jan 30, 2024 12:55 pm
by Bugala
So how do I get it to draw me a curve? For to me it was just drawing this pac-man figure?

Re: How do I draw a curve?

Posted: Tue Jan 30, 2024 1:48 pm
by plouf
hm Arc() design also the pie, my mistake
guess only option is VectorLibrary ...

example

Code: Select all

StartPath(1)
CurveTo(1,0,0,100,100,10,100)
DrawPath(1,100,100,#BLUE)


Repeat
	WaitEvent()
Forever