Computer Science Canada

Riddle me this

Author:  ecookman [ Fri Oct 17, 2008 8:09 am ]
Post subject:  Riddle me this

I am doing a bonus project and i am trying to make a wierd looking pic out of cicrles and a arc for a mouth...
how do i use the.. "drawfillarc" function i know it needs 7 parameters like


drawfillarc ([xcorr],[ycorr],[?],[?],[?],[?],[color])

if someone could tell me what the '[?]' are that would very helpful!! Laughing

i know that they controll the arc of it but i have no clue how


what i have so far...

%TEH MARVALOUSZ BROWN PIGGAHZ



drawfilloval (350,200,200,200,111)%base

drawfilloval (350,180,100,100,114)%nose

drawfilloval (300,180,20,20,255)%nostral left
drawfilloval (400,180,20,20,255)%nosrtal right

drawfilloval (250,300,40,40,255)%right eye
drawfilloval (450,300,40,40,255)%left eye

%here is where i try to draw the mouth
drawfillarc (350,122,[?],[?],[?],[?],white) %mouth ([?] is where i need help)







and onle last thing... i have seen some ppl put a small...'clip' lets call it of the turing window with the colors... how do i do this

thanks for all the help
-Ecookman Canada

Author:  DemonWasp [ Fri Oct 17, 2008 8:55 am ]
Post subject:  RE:Riddle me this

Use the Help menu (or F10) to access the Turing help. That will tell you how to use drawfillarc() or Draw.FillArc().

I don't know what you mean by "clip" of the Turing run window.

Author:  Insectoid [ Fri Oct 17, 2008 11:06 am ]
Post subject:  RE:Riddle me this

Turing Walkthrough. Read.

Or search Draw.FillArc ().

I think it goes like so:

code:
Draw.FillArc (x, y,, lenght, height, startdegree, enddegree, color)


degree 0 is on the right of the horizontal axis.

Author:  ecookman [ Fri Oct 17, 2008 4:12 pm ]
Post subject:  RE:Riddle me this

thanks all and thanks insectoid for not being a smarty... have some bits!!


: