Author Archives: Chris Pro

Chris Pro Homework 2.1 part 3

LINK (http://www.openprocessing.org/sketch/88553)       //Smiley Face Chris Pro //click the mouse anywhere to change background color //press a key and a body appears //Window Size void setup() { size(800, 600); } void mousePressed() { //Background Color background(mouseX, mouseY, mouseX); … Continue reading

Posted in Uncategorized | Leave a comment

Chris Pro Homework 2.1 part 2

//Chris Pro Homework 2.1 Part 2 //fix the 16 errors void setup(){ size(200,200); } void draw(){ background(0); fill(255,255); ellipse(100,100,100,100); line(100,100,200,200); rect(mouseX, mouseY, 50,50); }

Posted in Uncategorized | Leave a comment

Chris Pro homework 1.2 part 3

//Smiley Face Chris Pro size(800,600); background(0); //face fill(255,246,142); ellipse(400,300,200,200); //eyes fill(255,255,255); ellipse(360,260,25,25); ellipse(430,260,25,25); fill(0,255,0); ellipse(360,260,12,12); ellipse(430,260,12,12); fill(0,0,0); ellipse(360,260,5,5); ellipse(430,260,5,5); //nose line(395,275,395,315); line(395,315,410,315); //freckles fill(183,174,78); ellipse(330,295,7,7); ellipse(360,295,7,7); ellipse(345,315,7,7); ellipse(430,295,7,7); ellipse(460,295,7,7); ellipse(445,315,7,7); //glasses fill(255,255,255,0); rect(340,247,40,25); rect(410,247,40,25); line(380,259.5,410,259.5); line(340,259.5,280,247); line(450,259.5,485,247); //Mouth fill(255,0,0); bezier(350, … Continue reading

Posted in Uncategorized | Leave a comment

Chris Pro Homework 1.2 part 2

//Chris Pro Assignment 1.2 //window size size(400,400); //top left red square fill(255,0,0); rect(0,0,200,200); //top right green square fill(0,255,0); rect(200,0,200,200); //bottom left blue square fill(0,0,255); rect(0,200,200,200); //bottom right grey square fill(125); rect(200,200,200,200); //centered transparent circle with black outline fill(255,255,255,200); stroke(0); strokeWeight(4); … Continue reading

Posted in Uncategorized | Leave a comment

hey its chris

whats going on??

Posted in Uncategorized | Leave a comment