ISTA project, Tumor, Mor Dots
in
Share your Work
•
3 years ago
Decided to write 2 more programs for my project, the Tumor is an expanding amorphous blob and mor dots...well...you shall see.
Mor Dots!!!
Mor Dots!!!
- void setup(){
size(600,600);
background(145);
smooth();
}
void draw(){
for(int i = 0;i <= second(); i++){
fill(random(255),random(255),random(255));
ellipse(random(600),random(600),second()*5,second()*5);
}
}
- void setup(){
size(600,600);
background(150);
smooth();
}
void draw(){
fill(0);
for(int j = 0; j<= 60;j++){
ellipse(300+random(50),300+random(50),second()*random(second()/5), second()*random(second()/5));
}
}