Skip to content

Instantly share code, notes, and snippets.

@mbaranowski
Created December 10, 2012 21:21
Show Gist options
  • Save mbaranowski/4253529 to your computer and use it in GitHub Desktop.
Save mbaranowski/4253529 to your computer and use it in GitHub Desktop.
openGL Axis
glBegin(GL_LINES);
glColor3f(1.0f,0.0f,0.0f); glVertex3f(0.0f, 0.0f, 0.0f); glVertex3f(1.0f, 0.0f, 0.0f);
glColor3f(0.0f,1.0f,0.0f); glVertex3f(0.0f, 0.0f, 0.0f); glVertex3f(0.0f, 1.0f, 0.0f);
glColor3f(0.0f,0.0f,1.0f); glVertex3f(0.0f, 0.0f, 0.0f); glVertex3f(0.0f, 0.0f, 1.0f);
glEnd( );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment