CIS 20.1 - Computer Graphics
Homework #1 - Revisiting 'Revisiting the Gasket' :)
Modify the Gasket3 program so that it works with x,y coordinates rather than vectors:
- instead of passing
GLFloat *
's as parms, pass the pair of x, y, coordinates
- the form of glVertex function used should be
glVertex2f
rather than glVertex2fv
.