Homework 1.2 part 2 by Reno Abraham

void setup(){
size(400,400);
noStroke();
fill(250,0,0);
rect(0,0,200,200);
fill(0,0,250);
rect(0,200,200,200);
fill(0,250,0);
rect(200,0,200,200);
fill(153);
rect(200,200,200,200);
stroke(0);
strokeWeight(4);
fill(255,255,255,210);
ellipse(200,200,100,100);
// size of the pixels
// make the rectangle have no outline
// rectangle on the left corner and color red
// another rectangle on the lower left corner and color will be blue blue
// third rectangle would be on the right corner and the color would be green
// The last rectangle would be on the right lower corner with the color gray
// make a circle
// put the circle in the middle
// make the circle transparent
// make the circle outline thick black

}

part 3


http://www.openprocessing.org/sketch/88208

 

Posted in Uncategorized | Leave a comment

H.W – 1.2

Part #2
Erick Asadobay

size(400,400); //Sets the size of 400 by 400 pixels
noStroke(); //Invisible line around the figure
fill(255,0,0); //Fill the figure with red color
rect(0,0,200,200); //Square 200 by 200
fill(0,255,0); //Fill the figure with green color
rect(200,0,400,200); //Square 200 by 200
fill(0,0,255); //Fill the figure with blue color
rect(0,200,200,400); //Square 200 by 200
fill(125); //Fill the figure with gray color
rect(200,200,400,400); //Square 200 by 200
strokeWeight(4); //thickness of the line around the circle
stroke(0); //Black line around the circle
fill(255,255,255,200); //Transparent white color
ellipse(200,200,100,100); //Circle 100 by 100

Part #3
http://www.openprocessing.org/sketch/87903

Posted in Uncategorized | Leave a comment

Homework 1.2

Geremias Blanco

//making size 400×400

size(400,400);

//making red rect size/cords (0,0,200,200)
fill(255,0,0);
rect (0,0,200,200);
//making blue rect size/cords (0,200,200,200)
fill (0,0,255);
rect(0,200,200,200);
//making green rect siz/cord (200,0,200,200)
fill(0,255,0);
rect (200,0,200,200);
// making gray rect size/cord (200,200,200,200)
fill(126,122,122);
rect(200,200,200,200);
// making circle size/cord (200,200,100,100) /stroke(0) transparentcy 75%
stroke(0);
fill(200,200,200,210);
ellipse(200,200,100,100);

 

and my link to  part 3

http://www.openprocessing.org/sketch/87895

If anything is missing please let me know =)

Posted in Uncategorized | Leave a comment

Homework 1.2

Here’s the code for the assignment

//Terrance Shields – Calli Higgins – 1/31 – Assignment 1.2

size(400,400); //sets the size of the window to be used
ellipseMode(CENTER); //set ellipse to center mode
noStroke(); //no outline for the shape

fill(255,0,0); //Set color to Red
rect(0,0,200,200); //first rectangle

fill(0,0,255);//Set color to blue
rect(0,200,200,200); // second rectangle

fill(0,255,0);//Set color to green
rect(200,0,200,200);// Third rectangle

fill(113,121,115);//Set color to grey
rect(200,200,200,200);//Forth rectangle

noFill();//reset the fill to nothing

stroke(0);//set line color
fill(255,255,255,200);//set color to white AND make it somewhat opaque
strokeWeight(4);//sets the line to 4 pixels
ellipse(200,200,100,100);//sets ellipse and the central point will be 100,100

http://www.openprocessing.org/sketch/87549

Posted in Uncategorized | 2 Comments

Posted in Uncategorized | Leave a comment

Testing

Code not working, here is the link

http://www.openprocessing.org/sketch/87549

Posted in Uncategorized | Leave a comment

Homework 1

More Galleries | Leave a comment

It works!

Hello 🙂

Posted in Uncategorized | Leave a comment

hey its chris

whats going on??

Posted in Uncategorized | Leave a comment

hello

Posted in Uncategorized | Leave a comment