sketch-a-day/2019/sketch_190406a/face_draw.py

8 wiersze
102 B
Python
Czysty Zwykły widok Historia

2019-04-06 18:18:15 +00:00
def face_draw(points):
beginShape()
for p in points:
vertex(*p)
endShape(CLOSE)