Guest User

Vertices.h

a guest
Mar 9th, 2011
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #pragma once
  2.  
  3.  
  4.  
  5. float vertices[] =
  6.  
  7. {
  8.  
  9.     -0.8f, 0.8, 0.0f,
  10.  
  11.     -0.8f, -0.8f, 0.0f,
  12.  
  13.     0.8f, -0.8f, 0.0f,
  14.  
  15.  
  16.  
  17.     -0.8f, 0.8f, 0.0f,
  18.  
  19.     0.8f, -0.8f, 0.0f,
  20.  
  21.     0.8f, 0.8f, 0.0f       
  22.  
  23. };
  24.  
  25.  
  26.  
  27. float uvs[] =
  28.  
  29. {
  30.  
  31.     0, 1,
  32.  
  33.     0, 0,
  34.  
  35.     1, 0,
  36.  
  37.    
  38.  
  39.     0, 1,
  40.  
  41.     1, 0,
  42.  
  43.     1, 1
  44.  
  45. };
Advertisement
Add Comment
Please, Sign In to add comment