Advertisement
ZeLiBoBaS

positions

Jun 3rd, 2015
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. GLfloat positions[] = {
  2.     //   x       y       z       w
  3.         0.5,    0.5,    0.0,    1.0,  // position 1
  4.         0.5,   -0.5,    0.0,    1.0,  // position 2
  5.        -0.5,    0.5,    0.0,    1.0,  // position 3
  6.        -0.5,   -0.5,    0.0,    1.0   // position 4
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement