Author Archives: Armando

HW 2.1 part 2 and 3

Openprocessing doesn’t want to upload my work for so here are the screen shots of them //fix the 15 errors void setup(){ size(200,200); } void draw(){ background(0); fill(255,255); ellipse(100,100,100,100); line(100,100,150,150); rect(mouseX, mouseY, 50,50); } Here is the code for part … Continue reading

Posted in Uncategorized | 1 Comment

HW1.2

1.2 Hw part 2 size(400,400);//how big my window is fill(255,0,0);//the color red is being used rect(0,0,200,200);//upper left square fill(0,255,0);//the color green is now being used rect(200,0,200,200);//the upper right square fill(0,0,255);//the color blue is now being used rect(0,200,200,200);//bottom left square fill(125);//the … Continue reading

Posted in Uncategorized | 1 Comment