TUTORIAL 07_CLASSES from Jose Sanchez on Vimeo. // PROCESSING VIDEO TUTORIAL 07
// CLASSES / OBJECTS
// BY JOSE SANCHEZ //code version written by Jose Sanchez //DECLARE
Ball myBall;
Ball myBall2;
Ball myBall3; void setup() { size(600,600); smooth(); //INITIALIZE myBall = new Ball(200,200); myBall2 = new Ball(100,400); myBall3 = new Ball(400,200);
} void draw() { ...
More
