Sunday, June 23, 2019

Processing Intro

I'm going to be working on some coding projects in Processing for a class. Here's where you can see my progress in learning. This is one of the first projects that I've completed.


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
void setup() {
  size(800,600);
  background(0,0,0);
}
void draw() {
  
}
void mouseDragged() {
    fill(random(50,255), random(50,255), 0); 
    ellipse(mouseX,mouseY, 5, 5);
}

No comments:

Post a Comment