Keywords changes, currently not entirely working

This commit is contained in:
Casey Reas
2012-12-09 15:35:57 +00:00
parent 46e3f44d1f
commit b9d9505827
15 changed files with 441 additions and 460 deletions
@@ -17,7 +17,7 @@ class Polygon {
// Simple motion
void move() {
y+=speed;
y += speed;
if (y > height+100) {
y = -100;
}
@@ -15,8 +15,8 @@ void setup() {
smooth();
// Make a PShape
PShape star = createShape();
star.noStroke();
star.fill(0,127);
star.stroke(0);
star.vertex(0, -50);
star.vertex(14, -20);
star.vertex(47, -15);