Author Archives: Matthew

Matthew Soto midterm proposal

When ask to come up with an idea for my midterm I wasn’t sure what to create. So I decided to make landscape of a city. The reason I chose to do a city landscape is because in the city … Continue reading

Posted in Uncategorized | Leave a comment

Matthew Soto 2/26/13 HW the embedded version doesn’t seem to work

PImage myImage; PImage myImage2; void setup(){ size(800,800); myImage=loadImage(“beautiful_blue_sky_hd_picture_166005.jpg”); myImage2=loadImage(“st.-augustine.jpg”); } void draw(){ background(0); image(myImage, 0, 0, 800, 800); image(myImage2, 0, 700, 800,100); fill(170, 0, 0);//House, fill in color rect(350, 500, 302, 200);//Shape and positon of the house stroke(0);//stroke of the … Continue reading

Posted in Uncategorized | Leave a comment

Matthew_Soto_2/26/13_HW

Posted in Uncategorized | Leave a comment

Matthew Soto 2/20/13 Hw 4.2

int x= 1; int speed= 1; float y= 200; float w= 100; float h= 100; int state=0; boolean button= false; void setup(){ size(800, 800); } void draw(){ background(0); if (button){ x=x; } else{ x= x+speed; } fill(255); rect(x, 200, 100, … Continue reading

Posted in Uncategorized | Leave a comment

Matthew Soto 2/19/13 HW 3.3

int x= 1; int speed= 1; float r= 255; float g= 0; float b=4; void setup(){ size(800, 800); } void draw(){ background(0); fill(255); ellipse(x, 200, 100, 100); if(x>width){ speed=speed* -1; fill(255, 0, 4); ellipse(x, 200, 100, 100); } else if … Continue reading

Posted in Uncategorized | Leave a comment

Matthew Soto 2/14/13 HW 2.1

int r= 255; int g= 255; int b= 255; boolean sunny= false; float x; x= 12.0; float z; z=0; z= x + 25; float y= z + 12.0;

Posted in Uncategorized | Leave a comment

Matthew Soto 2/14/13 HW 2.2

int circleX= 15; int circleY= 20; int circleW= 25; int circleH= 25; int fillX= 255; void setup(){ background(0,0,0);//sky, light blue fill(255, 255, 255);//Color of the sun, yellow ellipse(circleX, circleY, 25, 25);//Shape and position of the sun fill(170, 0, 0);//House, fill … Continue reading

Posted in Uncategorized | Leave a comment

Matthew Soto Hw 2.2

void setup(){ size(200,200); background(0); fill(255,255); ellipse(56, 46, 55, 55); line(30, 20, 85, 75); } void draw(){ background(0); fill(255,255); ellipse(56, 46, 55, 55); line(30, 20, 85, 75); rect(mouseX, mouseY, 50,50); }

Posted in Uncategorized | Leave a comment

Matthew Soto 2/7/13 HW Part 2.3

void setup(){ background(0,0,0);//sky, light blue fill(255, 255, 255);//Color of the sun, yellow ellipse(15, 20, 25, 25);//Shape and position of the sun } void draw(){ fill(170, 0, 0);//House, fill in color rect(32, 50, 55, 55);//Shape and positon of the house stroke(205, … Continue reading

Posted in Uncategorized | 1 Comment

Matthew Soto HW: 1.2 Part 3

background(0, 159, 255);//sky, light blue fill(170, 0, 0);//House, fill in color rect(32, 50, 55, 55);//Shape and positon of the house stroke(205, 209, 4);//stroke color of the sun, dark yellow fill(250, 255, 0);//Color of the sun, yellow ellipse(15, 20, 25, 25);//Shape … Continue reading

Posted in Uncategorized | Leave a comment