Description
This page is generated from the Processing project folder at /2017/Lessons/Drawing_Shapes_01/Drawing_Shapes_01.pde.
Archive
No companion assets were found in this sketch folder.
//Setup
void setup() {
size(400,400);
background(#EAEAEA);
}
void draw() {
//--------------------------------------------Drawings 01-------------------------------------------------//
////White Circle
//noStroke();
//fill(#FFFFFF);
//ellipse(200,200,300,300);
////Grey Lines
//stroke(#DBDBDB);
//strokeWeight(10);
//line(0,0,400,400);
//line(400,0,0,400);
////Pink Circle
//noStroke();
//fill(#FF6464);
//ellipse(200,200,200,200);
//--------------------------------------------Drawings 02-------------------------------------------------//
////Green Stroke Rectangle
//stroke(#00FF57);
//strokeWeight(5);
//fill(#FFFFFF);
//rect(50,100,300,200);
////Red Circle
//noStroke();
//fill(#FF4047);
//ellipse(200,200,200,200);
//--------------------------------------------Drawings 03-------------------------------------------------//
////Green Lines
//stroke(#00FF57);
//strokeWeight(5);
//line(0,0,200,200);
//line(400,0,200,200);
////Red Rectangle
//noStroke();
//fill(#FF4047);
//rect(0,200,400,200);
//--------------------------------------------Drawings 04-------------------------------------------------//
////Red Cross Line
//stroke(#FF4047);
//strokeWeight(5);
//line(0,0,400,400);
////Green Cross Line
//stroke(#00FF57);
//line(400,0,0,400);
} This page is generated from the Processing project folder at /2017/Lessons/Drawing_Shapes_01/Drawing_Shapes_01.pde.
No companion assets were found in this sketch folder.