Computer Science 112
The Art & Science of Computer Graphics
Fall 2015, The College of Saint Rose
Agenda
Develop a model that contains a diagonal row of little red spheres (like the ones in today's class examples) from the lower left to the upper right of the image and another row from the upper left to lower right, when viewed by the default camera and image settings. Hint: the program is very similar to the class examples, but you need to translate spheres in both x and y. You can either do this with two statements inside of one loop or two separate loops.
Here's what my image looks like:
Please demonstrate your program or submit your Python model and image by email before you leave class. Email submissions should use a meaningful subject line, clearly indicating the course number and assignment name.
Due at the start of class, Wednesday, November 4.
Please submit answers to these questions either as a hard copy (typeset or handwritten are OK) or by email to terescoj AT strose.edu by the start of class. Please use a clear subject line when submitting by email (e.g., CSC 112 Lecture 17 Assignment , Joe Student). We will discuss these questions at the start of class, so no late submissions are accepted.
Create a Prism using a Bézier profile that looks sort of like a loaf of bread. Here's what I came up with.
Yours does not need to look identical. You will define a polygon with groups of 4 points defining each part of the profile as a cubic Bézier curve. (10 points)
Terminology
Examples