Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public void drawLine( Vector3f from, Vector3f to, Vector3f color )
  2. {
  3. glBegin(GL_LINES);
  4. glVertex2f(10, 10);
  5. glVertex2f(20, 20);
  6. glEnd();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement