Tizen 2.1 base
[platform/upstream/libbullet.git] / Extras / PhysicsEffects / sample / api_physics_effects / common / box.h
1 /*\r
2 Physics Effects Copyright(C) 2010 Sony Computer Entertainment Inc.\r
3 All rights reserved.\r
4 \r
5 Physics Effects is open software; you can redistribute it and/or\r
6 modify it under the terms of the BSD License.\r
7 \r
8 Physics Effects is distributed in the hope that it will be useful,\r
9 but WITHOUT ANY WARRANTY; without even the implied warranty of\r
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\r
11 See the BSD License for more details.\r
12 \r
13 A copy of the BSD License is distributed with\r
14 Physics Effects under the filename: physics_effects_license.txt\r
15 */\r
16 \r
17 #define NUM_BOX_VTX 36\r
18 #define NUM_BOX_IDX 36\r
19 const float box_vtx[] = {\r
20         -0.500000f,-0.500000f,-0.500000f,0.000000f,0.000000f,-1.000000f,\r
21         -0.500000f,0.500000f,-0.500000f,0.000000f,0.000000f,-1.000000f,\r
22         0.500000f,0.500000f,-0.500000f,0.000000f,0.000000f,-1.000000f,\r
23         -0.500000f,-0.500000f,-0.500000f,0.000000f,0.000000f,-1.000000f,\r
24         0.500000f,0.500000f,-0.500000f,0.000000f,0.000000f,-1.000000f,\r
25         0.500000f,-0.500000f,-0.500000f,0.000000f,0.000000f,-1.000000f,\r
26         -0.500000f,-0.500000f,-0.500000f,0.000000f,-1.000000f,0.000000f,\r
27         0.500000f,-0.500000f,-0.500000f,0.000000f,-1.000000f,0.000000f,\r
28         0.500000f,-0.500000f,0.500000f,0.000000f,-1.000000f,0.000000f,\r
29         -0.500000f,-0.500000f,-0.500000f,0.000000f,-1.000000f,0.000000f,\r
30         0.500000f,-0.500000f,0.500000f,0.000000f,-1.000000f,0.000000f,\r
31         -0.500000f,-0.500000f,0.500000f,0.000000f,-1.000000f,0.000000f,\r
32         -0.500000f,-0.500000f,-0.500000f,-1.000000f,0.000000f,0.000000f,\r
33         -0.500000f,-0.500000f,0.500000f,-1.000000f,0.000000f,0.000000f,\r
34         -0.500000f,0.500000f,0.500000f,-1.000000f,0.000000f,0.000000f,\r
35         -0.500000f,-0.500000f,-0.500000f,-1.000000f,0.000000f,0.000000f,\r
36         -0.500000f,0.500000f,0.500000f,-1.000000f,0.000000f,0.000000f,\r
37         -0.500000f,0.500000f,-0.500000f,-1.000000f,0.000000f,0.000000f,\r
38         -0.500000f,-0.500000f,0.500000f,0.000000f,0.000000f,1.000000f,\r
39         0.500000f,-0.500000f,0.500000f,0.000000f,0.000000f,1.000000f,\r
40         0.500000f,0.500000f,0.500000f,0.000000f,0.000000f,1.000000f,\r
41         -0.500000f,-0.500000f,0.500000f,0.000000f,0.000000f,1.000000f,\r
42         0.500000f,0.500000f,0.500000f,0.000000f,0.000000f,1.000000f,\r
43         -0.500000f,0.500000f,0.500000f,0.000000f,0.000000f,1.000000f,\r
44         -0.500000f,0.500000f,-0.500000f,0.000000f,1.000000f,0.000000f,\r
45         -0.500000f,0.500000f,0.500000f,0.000000f,1.000000f,0.000000f,\r
46         0.500000f,0.500000f,0.500000f,0.000000f,1.000000f,0.000000f,\r
47         -0.500000f,0.500000f,-0.500000f,0.000000f,1.000000f,0.000000f,\r
48         0.500000f,0.500000f,0.500000f,0.000000f,1.000000f,0.000000f,\r
49         0.500000f,0.500000f,-0.500000f,0.000000f,1.000000f,0.000000f,\r
50         0.500000f,-0.500000f,-0.500000f,1.000000f,0.000000f,0.000000f,\r
51         0.500000f,0.500000f,-0.500000f,1.000000f,0.000000f,0.000000f,\r
52         0.500000f,0.500000f,0.500000f,1.000000f,0.000000f,0.000000f,\r
53         0.500000f,-0.500000f,-0.500000f,1.000000f,0.000000f,0.000000f,\r
54         0.500000f,0.500000f,0.500000f,1.000000f,0.000000f,0.000000f,\r
55         0.500000f,-0.500000f,0.500000f,1.000000f,0.000000f,0.000000f,\r
56 };\r
57 const unsigned short box_idx[] = {\r
58         0,1,2,\r
59         3,4,5,\r
60         6,7,8,\r
61         9,10,11,\r
62         12,13,14,\r
63         15,16,17,\r
64         18,19,20,\r
65         21,22,23,\r
66         24,25,26,\r
67         27,28,29,\r
68         30,31,32,\r
69         33,34,35,\r
70 };\r