kopia lustrzana https://github.com/villares/sketch-a-day
8 wiersze
102 B
Python
8 wiersze
102 B
Python
|
|
|
||
|
|
|
||
|
|
def face_draw(points):
|
||
|
|
beginShape()
|
||
|
|
for p in points:
|
||
|
|
vertex(*p)
|
||
|
|
endShape(CLOSE)
|