Specifying Vertices
• glVertex2s (200, -150);
–2D point in short coordinates
•
• glVertex3i (200, -150, 40);
–3D point in integer coordinates
–
• GLdouble dpoint[3] = {200.0, -150.5, 40.0};
•      glVertex3dv (dpoint);
•
•
•
–