-
Recent Posts
Recent Comments
- Danielle Small on Final Blog Post
- Calli Higgins on Homework 10.2
- Calli Higgins on Homework 10.2
- Calli Higgins on Homework 10.2
- Calli Higgins on Nafis Sabir HW 10.2
Archives
Categories
Meta
Author Archives: FromAnotherPlanet
Nafis S. HW 2.1.3
/*Nafis Sabir Professor Calli Higgins HW 2.1.3*/ void setup() { size(800, 800);//window size background(0, 150, 255);//background color strokeWeight(9);//weight for stems stroke(10, 200, 0);//stem color line(200, 303, 200, 700);//stem 1 line(560, 503, 560, 700);//stem 2 line(380, 403, 380, 700);//stem 3 noStroke();//removed … Continue reading
Posted in Uncategorized
Leave a comment
NAFIS SABIR HW 1.2.3
Professor Higgins I figured out what was wrong with the code. Here’s the corrected version. /*Nafis Sabir Professor Calli Higgins HW 1.2.3*/ void setup() { size(800, 800);//window size } void draw() { background(0, 150, 255);//background color smooth();//pixel smoothing strokeWeight(9);//weight for … Continue reading
Posted in Uncategorized
1 Comment
Nafis Sabir HW 1.3.1
size(800,800); background(0,150,255); fill(0,0,255); strokeWeight(2); stroke(2); arc(200, 200, 200, 200, 0, PI+QUARTER_PI, PIE); strokeWeight(9); stroke(10,200,0); line(200, 303, 200, 700); size(800,800); fill(146,0,206); strokeWeight(2); stroke(2); arc(380, 300, 200, 200, 0, PI+QUARTER_PI, PIE); strokeWeight(9); stroke(10,200,0); line(380, 403, 380, 700); size(800,800); fill(255,0,255); strokeWeight(2); stroke(2); arc(560, … Continue reading
Posted in Uncategorized
Leave a comment
Nafis Sabir HW 1.2 Part 2
/*NAFIS SABIR PROFESSOR CALLI HIGGINS 02/04/2013 HOMEWORK 1.2*/ size(400, 400);//window size rectMode(RADIUS);//top left rect position fill(255,0,0);//top left rect red color rect(100, 100, 100, 100);//top left rect size rectMode(RADIUS);//top right rect position fill(0,255,0);//top right rect green color rect(300, 100, 100, 100);//top … Continue reading
Posted in Uncategorized
1 Comment