Files
processing4/android/examples/Topics/Create Shapes/WigglePShape/WigglePShape.pde
2012-09-05 23:50:25 +00:00

24 lines
272 B
Plaintext

/**
* WigglePShape.
*
* How to move the individual vertices of a PShape
*/
// A "Wiggler" object
Wiggler w;
void setup() {
size(640, 360, P2D);
orientation(LANDSCAPE);
w = new Wiggler();
}
void draw() {
background(255);
w.display();
w.wiggle();
}