Added new P3D examples

This commit is contained in:
codeanticode
2011-12-12 04:20:41 +00:00
parent 63e688f79a
commit ffbf9af5ed
74 changed files with 4885 additions and 0 deletions
@@ -0,0 +1,18 @@
size(100, 100, P3D);
beginShape(POLYGON);
fill(0, 255, 0, 255);
stroke(0, 0, 255, 255);
strokeWeight(10);
strokeJoin(ROUND);
vertex(10, 10);
vertex(10, 90);
vertex(90, 90);
vertex(90, 10);
breakShape();
vertex(40, 40);
vertex(70, 40);
vertex(70, 70);
vertex(40, 70);
endShape(CLOSE);