|
Author |
Topic: poly() (Read 780 times) |
|
guest Guest
|
poly()
« on: Jul 6th, 2004, 3:45pm » |
|
i am unable to draw polygons with this language
|
|
|
|
TomC
|
Re: poly()
« Reply #1 on: Jul 6th, 2004, 4:34pm » |
|
Take a look at beginShape, vertex, and endShape in the Reference. Code: beginShape(POLYGON); vertex(x1,y1); vertex(x2,y2); vertex(x3,y3); vertex(x4,y4); vertex(x5,y5); endShape(); |
|
|
|
|
|
Guest Guest
|
Re: poly()
« Reply #2 on: Jul 6th, 2004, 5:10pm » |
|
oic
|
|
|
|
|