Monthly Archives: September 2016

In Class Animate

long timer; float framespeed= 50; int circleX=100; int Yo=180; int circleW=186; int circleZ=180; int circleJ= 1; int circleL =20; int circleR =20; int circleM =50; void setup() { size(300, 400); smooth(); timer=millis(); } void draw() { fill(178,41,56); ellipse(width/2, height/2, 200, … Continue reading

Posted in Time Based | Tagged , , | Leave a comment

Homework 2 – IterationExcercise

void setup() { size(600, 600); smooth(); } void draw() { for (int i = 0; i < 30; i ++) { ellipse(i*20, 20, 20, 20); } for (int i = 0; i < 30; i ++) { ellipse(i*20, 20, 20, … Continue reading

Posted in Time Based | Tagged , | Leave a comment

Flipbook – Scotty Squirrel

For my flipbook, I chose the artist UB Iwerks. Ub Iwerks was one of the main animators for Disney Studios before creating his own company. This gave him the experience and know how to make successful animations throughout the years. … Continue reading

Posted in Time Based | Tagged , , , | Leave a comment

Homework 1

Fix_1 void Setup() { void Setup() { background(255); size(1920,1080); smooth(); } void draw() { ellipseMode(CENTER); rectMode(CENTER); stroke(0); fill(175); rect(mouseX,mouseY,20,100); stroke(0); fill(255); ellipse(mouseX,mouseY-30,60,60); fill(mouseX,0,mouseY); ellipse(mouseX-19,mouseY-30,16,32); ellipse(mouseX+19,mouseY-30,16,32); stroke(0); line(mouseX-10,mouseY+50,pmouseX-10,pmouseY+60); line(mouseX+10,mouseY+50,pmouseX+10,pmouseY+60); } void mousePressed() { println(“Take me to your leader!”); }     … Continue reading

Posted in Time Based | Tagged , | Leave a comment

Girl With a Pearl Earring – Jamyr Laroche

void setup () { background(0, 0, 0); size(521, 600); } void draw() { noStroke(); fill(221, 199, 188); quad(230, 341, 320, 302, 329, 351, 260, 379); //neck ellipse(250, 250, 170, 170); //head ellipse(190, 196, 30, 45); //head ellipse(178, 209, 20, 20); … Continue reading

Posted in Time Based | Tagged , , , | Leave a comment