CS 419ab -- Winter Quarter 2019
Project #2
50 Points
Due: January 21
Draw Something Cool in 2D using Processing
This page was last updated: January 5, 2019
Requirements
-
This project requires you to draw something fun in 2D.
It must be of your own creation.
-
You must have at least 10 objects.
-
You must use at least 5 different colors.
-
All of these make good objects for this assignment:
- curve( x0, y0, x1, y1, x2, y2, x3, y3 );
- ellipse( centerx, centery, width, height );
- line( x0, y0, x1, y1 );
- rect( centerx, centery, width, height );
- triangle( x0, y0, x1, y1, x2, y2 );
-
Note that a circle can be created from an ellipse whose width and height are the same:
- ellipse( centerx, centery, radius, radius );
Turn-in:
Use the
Teach system
to turn in your:
- Your Processing file
- A one-page PDF with a title, your name, your email address, and a nice screen shot from your program.
Grading:
Feature | Points
|
---|
At least 10 vertices | 20
|
Actually looks like something I recognize | 10
|
At least 5 colors | 20
|
Potential Total | 50
|
---|