How do I draw a curve?

Find quick help here to get you started with Hollywood
Post Reply
Bugala
Posts: 1181
Joined: Sun Feb 14, 2010 7:11 pm

How do I draw a curve?

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

Re: How do I draw a curve?

Post by plouf »

Arc()

also Vectorlibrary may help you has a lot
Christos
Bugala
Posts: 1181
Joined: Sun Feb 14, 2010 7:11 pm

Re: How do I draw a curve?

Post by Bugala »

So how do I get it to draw me a curve? For to me it was just drawing this pac-man figure?
plouf
Posts: 473
Joined: Sun Feb 04, 2018 11:51 pm
Location: Athens,Greece

Re: How do I draw a curve?

Post 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
Christos
Post Reply