-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglut_geometry.h
2820 lines (2732 loc) · 101 KB
/
glut_geometry.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//******** PRACTICA VISUALITZACIÓ GRÀFICA INTERACTIVA (Escola Enginyeria - UAB)
//******** Entorn bàsic VS2022 MONO-MULTIFINESTRA amb OpenGL 4.3+ i llibreries GLM
//******** Enric Martí Gòdia (Setembre 2023)
// glut_geometry.h: interface de de glut_geometry.cpp.
/*
* glut_geometry.h
*
* Freeglut geometry rendering methods.
*
* Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
* Written by Pawel W. Olszta, <[email protected]>
* Creation date: Fri Dec 3 1999
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
//#include <GL/freeglut.h>
//#include "freeglut_internal.h"
#include "constants.h"
#include <vector>
#include <string>
/*
* TODO BEFORE THE STABLE RELEASE:
*
* Following functions have been contributed by Andreas Umbach, updated by Enric Martí to VBO.
*
* glutSolidCube() -- looks OK, VAO functions separated (*_VAO(), draw*(), deleteVBO(GL*)
* glutSolidCubeRGB() -- looks OK, VAO functions separated (*_VAO(), draw*(), deleteVBO(GL*)
*
* The Following functions have been updated by Nigel Stewart, based
* on FreeGLUT 2.0.0 implementations, updated by Enric Martí to VBO:
*
* glutSolidSphere() -- looks OK
* glutSolidCone() -- looks OK
* glutSolidCylinder() -- looks OK
*
* Those functions have been implemented by John Fay, updated by Enric Martí to VBO..
*
* glutSolidTorus() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* glutSolidDodecahedron() -- looks OK
* glutSolidOctahedron() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* glutSolidTetrahedron() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* glutSolidIcosahedron() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* glutSolidRhombicDodecahedron() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* glutSolidSierpinskiSponge() -- looks OK
* glutSolidTeapot() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
*
* The Following functions have been updated by Enric Martí, based
* on GLU 9.0.0 implementations (include texture coordinates) to VBO:
*
* gluCylinder() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* gluDisk() -- looks OK
* gluPartialDisk() -- looks OK
* gluSphere() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* draw_Lemniscata2D() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* draw_Lemniscata3D() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* draw_BSpline_Curve() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
* draw_Bezier_Curve() -- looks OK, VBO functions separated (*_VBO(), draw*(), deleteVBO(GL*)
*/
#ifndef GLET_GEOMETRY_H /* GLET_GEOMETRY_H */
#define GLET_GEOMETRY_H
/* -- INTERFACE CONSTANTS -------------------------------------------------- */
//--------------- VGI: Màxim tamany vector vaoList
#define MAX_SIZE_VAOID 45
//--------------- VGI: Apuntadors a l'estructura VAOList per primitives
#define CUBE_SKYBOX 0
#define GLUT_CUBE 1
#define GLUT_CUBE_RGB 2
#define GLUT_SPHERE 3
#define GLUT_CONE 4
#define GLUT_CYLINDER 5
#define GLUT_TORUS 6
#define GLUT_DODECAHEDRON 7
#define GLUT_OCTAHEDRON 8
#define GLUT_TETRAHEDRON 9
#define GLUT_ICOSAHEDRON 10
#define GLUT_RHOMBICDODECAHEDRON 11
#define GLUT_SIERPINSKISPONGE 12
#define GLUT_TEAPOT 13
#define GLU_CYLINDER 14
#define GLU_DISK 15
#define GLU_PARTIALDISK 16
#define GLU_SPHERE 17
#define CRV_POLYLINE 18
#define CRV_LEMNISCATA2D 19
#define CRV_LEMNISCATA3D 20
#define CRV_BSPLINE 21
#define CRV_BEZIER 22
#define SUP_BSPLINE 23
#define SUP_BEZIER 24
#define GLUT_LINES 25
#define GLUT_TRIANGLES 26
#define GLU_CILINDRE_SENCER 27
#define GLUT_SQUARE 28
#define MAR_FRACTAL_VAO 29
#define O_FRACTAL_VAO 30
#define FIT_OBJ 31
#define FIT_OBJ2 32
#define FIT_OBJ3 33
#define FIT_OBJ4 34
#define GRID_XY 35
#define GRID_XZ 36
#define GRID_YZ 37
#define GRID_XYZ 38
#define GLUT_USER1 39
#define GLUT_USER2 40
#define GLUT_USER3 41
#define GLUT_USER4 42
#define GLUT_USER5 43
#define GLUT_USER6 44
// ------------------------ INTERFACE FUNCTIONS ---------------------------------
//--------------- SETS (o PUTS)
void SetColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha);
void Set_VAOList(GLint k, CVAO auxVAO);
void Set_vaoId(GLuint k, GLuint vaoId);
void Set_vboId(GLuint k, GLuint vboId);
void Set_eboId(GLuint k, GLuint eboId);
void Set_nVertexs(GLuint k, GLint nvertexs);
//--------------- GETS
CVAO Get_VAOList(GLint k);
GLuint Get_VAOId(GLint k);
//--------------- INITS i DELETES
void initVAOList();
void netejaVAOList();
void deleteVAOList(GLint k);
//--------------- DRAWS (DIBUIX DE VAO's i EBO's
void draw_TriVAO_Object(GLint k);
void draw_LinVAO_Object(GLint k);
void draw_TriEBO_Object(GLint k);
void draw_LinEBO_Object(GLint k);
// ---------- CUBE -----------------------------------------------------------
void glutSolidCube(GLdouble dSize); // Generates solid cube. Code contributed by Andreas Umbach <[email protected]>
CVAO loadglutSolidCube_VAO(GLdouble dSize);
CVAO loadglutSolidCube_EBO(GLdouble dSize);
// ---------- CUBE RGB--------------------------------------------------------
void glutSolidCubeRGB(GLdouble dSize);// Draws a solid cube coloured by RGB with VAO. Code contributed by Enric Marti <[email protected]>
CVAO loadglutSolidCubeRGB_VAO(GLdouble dSize);// Draws a solid cube coloured by RGB with VAO. Code contributed by Enric Marti <[email protected]>
CVAO loadglutSolidCubeRGB_EBO(GLdouble dSize);
// ---------- CUBE SKYBOX -----------------------------------------------------
void CubeSkybox(GLdouble dSize);
CVAO loadCubeSkybox_VAO();
void drawCubeSkybox();
// ---------- SPHERE ----------------------------------------------------------
void glutSolidSphere(GLdouble radius, GLint slices, GLint stacks); // Draws a solid sphere
CVAO loadglutSolidSphere_VAO(GLdouble radius, GLint slices, GLint stacks); // Loads a solid sphere as VAO
CVAO loadglutSolidSphere_EBO(GLdouble radius, GLint slices, GLint stacks); // Loads a solid sphere as EBO
void fghCircleTable(double **sint, double **cost, const int n);
// ---------- CONE ------------------------------------------------------------
void glutSolidCone(GLdouble base, GLdouble height, GLint slices, GLint stacks); // Draws a solid cone
CVAO loadglutSolidCone_VAO(GLdouble base, GLdouble height, GLint slices, GLint stacks); // Loads a solid cone as VAO
CVAO loadglutSolidCone_EBO(GLdouble base, GLdouble height, GLint slices, GLint stacks); // LOads a solid cone as EBO
// ---------- CYLINDER --------------------------------------------------------
void glutSolidCylinder(GLdouble radius, GLdouble height, GLint slices, GLint stacks); // Draws a solid cylinder
CVAO loadglutSolidCylinder_VAO(GLdouble radius, GLdouble height, GLint slices, GLint stacks); // Loads a solid cylinder as VAO
CVAO loadglutSolidCylinder_EBO(GLdouble radius, GLdouble height, GLint slices, GLint stacks); // Loads a solid cylinder as EBO
// ---------- TORUS -----------------------------------------------------------
void glutSolidTorus(GLdouble dInnerRadius, GLdouble dOuterRadius, GLint nSides, GLint nRings); // Draws a solid torus
CVAO loadglutSolidTorus_VAO(GLdouble dInnerRadius, GLdouble dOuterRadius, GLint nSides, GLint nRings); // Loads a solid torus as VAO
CVAO loadglutSolidTorus_EBO(GLdouble dInnerRadius, GLdouble dOuterRadius, GLint nSides, GLint nRings); // Loads a solid torus as EBO
// ---------- DODECAHEDRON -----------------------------------------------------
void glutSolidDodecahedron(void); // Draws a solid dodecahedron
CVAO loadglutSolidDodecahedron_VAO(void); // Loads a solid dodecahedron as VAO
CVAO loadglutSolidDodecahedron_EBO(void); // Loads a solid dodecahedron as ebo
// ---------- OCTAHEDRON -----------------------------------------------------
void glutSolidOctahedron(void); // Draws a solid octahedron
CVAO loadglutSolidOctahedron_VAO(void); // Loads a solid octahedron as VAO
CVAO loadglutSolidOctahedron_EBO(void); // Loads a solid octahedron as EBO
// ---------- TETRAHEDRON -----------------------------------------------------
#define NUM_TETR_FACES 4
static GLdouble tet_r[4][3] = { { 1.0, 0.0, 0.0 },
{ -0.333333333333, 0.942809041582, 0.0 },
{ -0.333333333333, -0.471404520791, 0.816496580928 },
{ -0.333333333333, -0.471404520791, -0.816496580928 } };
static GLint tet_i[4][3] = /* Vertex indices */
{
{ 1, 3, 2 }, { 0, 2, 3 }, { 0, 3, 1 }, { 0, 1, 2 }
};
void glutSolidTetrahedron(void); // Draws a solid tetrahedron
CVAO loadglutSolidTetrahedron_VAO(void); // Loads a solid tetrahedron as VAO
CVAO loadglutSolidTetrahedron_EBO(void); // Loads a solid tetrahedron as EBO
// ---------- ICOSAHEDRON -----------------------------------------------------
static GLdouble icos_r[12][3] = {
{ 1.0, 0.0, 0.0 },
{ 0.447213595500, 0.894427191000, 0.0 },
{ 0.447213595500, 0.276393202252, 0.850650808354 },
{ 0.447213595500, -0.723606797748, 0.525731112119 },
{ 0.447213595500, -0.723606797748, -0.525731112119 },
{ 0.447213595500, 0.276393202252, -0.850650808354 },
{ -0.447213595500, -0.894427191000, 0.0 },
{ -0.447213595500, -0.276393202252, 0.850650808354 },
{ -0.447213595500, 0.723606797748, 0.525731112119 },
{ -0.447213595500, 0.723606797748, -0.525731112119 },
{ -0.447213595500, -0.276393202252, -0.850650808354 },
{ -1.0, 0.0, 0.0 }
};
static int icos_v [20][3] = {
{ 0, 1, 2 },
{ 0, 2, 3 },
{ 0, 3, 4 },
{ 0, 4, 5 },
{ 0, 5, 1 },
{ 1, 8, 2 },
{ 2, 7, 3 },
{ 3, 6, 4 },
{ 4, 10, 5 },
{ 5, 9, 1 },
{ 1, 9, 8 },
{ 2, 8, 7 },
{ 3, 7, 6 },
{ 4, 6, 10 },
{ 5, 10, 9 },
{ 11, 9, 10 },
{ 11, 8, 9 },
{ 11, 7, 8 },
{ 11, 6, 7 },
{ 11, 10, 6 }
};
void glutSolidIcosahedron(void); // Draws a solid icosahedron
CVAO loadglutSolidIcosahedron_VAO(void); // Draws a solid icosahedron in VAO
CVAO loadglutSolidIcosahedron_EBO(void); // Draws a solid icosahedron in EBO
// ---------- RHOMBIC DODECAHEDRON ---------------------------------------------
static GLdouble rdod_r[14][3] = {
{ 0.0, 0.0, 1.0 },
{ 0.707106781187, 0.000000000000, 0.5 },
{ 0.000000000000, 0.707106781187, 0.5 },
{ -0.707106781187, 0.000000000000, 0.5 },
{ 0.000000000000, -0.707106781187, 0.5 },
{ 0.707106781187, 0.707106781187, 0.0 },
{ -0.707106781187, 0.707106781187, 0.0 },
{ -0.707106781187, -0.707106781187, 0.0 },
{ 0.707106781187, -0.707106781187, 0.0 },
{ 0.707106781187, 0.000000000000, -0.5 },
{ 0.000000000000, 0.707106781187, -0.5 },
{ -0.707106781187, 0.000000000000, -0.5 },
{ 0.000000000000, -0.707106781187, -0.5 },
{ 0.0, 0.0, -1.0 }
} ;
static int rdod_v [12][4] = {
{ 0, 1, 5, 2 },
{ 0, 2, 6, 3 },
{ 0, 3, 7, 4 },
{ 0, 4, 8, 1 },
{ 5, 10, 6, 2 },
{ 6, 11, 7, 3 },
{ 7, 12, 8, 4 },
{ 8, 9, 5, 1 },
{ 5, 9, 13, 10 },
{ 6, 10, 13, 11 },
{ 7, 11, 13, 12 },
{ 8, 12, 13, 9 }
};
static GLdouble rdod_n[12][3] = {
{ 0.353553390594, 0.353553390594, 0.5 },
{ -0.353553390594, 0.353553390594, 0.5 },
{ -0.353553390594, -0.353553390594, 0.5 },
{ 0.353553390594, -0.353553390594, 0.5 },
{ 0.000000000000, 1.000000000000, 0.0 },
{ -1.000000000000, 0.000000000000, 0.0 },
{ 0.000000000000, -1.000000000000, 0.0 },
{ 1.000000000000, 0.000000000000, 0.0 },
{ 0.353553390594, 0.353553390594, -0.5 },
{ -0.353553390594, 0.353553390594, -0.5 },
{ -0.353553390594, -0.353553390594, -0.5 },
{ 0.353553390594, -0.353553390594, -0.5 }
};
void glutSolidRhombicDodecahedron(void); // Draws a solid Rhombic Dodecahedron
CVAO loadglutSolidRhombicDodecahedron_VAO(void); // Loads a solid Rhombic Dodecahedron in VAO
CVAO loadglutSolidRhombicDodecahedron_EBO(void); // Loads a solid Rhombic Dodecahedron in EBO
// ---------- SIERPINSKI SPONGE ---------------------------------------------
void glutSolidSierpinskiSponge(int num_levels, GLdouble offset[3], GLdouble scale); // Draws a Sierspinski Sponge
CVAO loadglutSolidSierpinskiSponge_VAO(int num_levels, GLdouble offset[3], GLdouble scale); // Loads a Sierspinski Sponge in VAO
CVAO loadglutSolidSierpinskiSponge_EBO(int num_levels, GLdouble offset[3], GLdouble scale); // Loads a Sierspinski Sponge in EBO
void glutSolidSierpinskiSpongeR(int num_levels, GLdouble offset[3], GLdouble scale, std::vector <double>& vertices, std::vector <double>& normals,
std::vector <double>& colors, std::vector <double>& textures, std::vector <uint>& indices, GLuint& apunt);
// ---------- TEAPOT_DATA ---------------------------------------------------
// Submitted through the kind offices of Daniel Wagner ([email protected])
// 530 vertices
const int numVertices = 530;
const float Vertices[530][3] = {
2.1f, 3.6f, 0.0f,
2.071f, 3.711f, 0.0f,
2.105f, 3.748f, 0.0f,
2.174f, 3.711f, 0.0f,
2.25f, 3.6f, 0.0f,
1.937f, 3.6f, 0.8242f,
1.91f, 3.711f, 0.8128f,
1.942f, 3.748f, 0.8261f,
2.005f, 3.711f, 0.8532f,
2.076f, 3.6f, 0.8831f,
1.491f, 3.6f, 1.491f,
1.47f, 3.711f, 1.47f,
1.494f, 3.748f, 1.494f,
1.543f, 3.711f, 1.543f,
1.597f, 3.6f, 1.597f,
0.8242f, 3.6f, 1.937f,
0.8128f, 3.711f, 1.91f,
0.8261f, 3.748f, 1.942f,
0.8532f, 3.711f, 2.005f,
0.8831f, 3.6f, 2.076f,
0.0f, 3.6f, 2.1f,
0.0f, 3.711f, 2.071f,
0.0f, 3.748f, 2.105f,
0.0f, 3.711f, 2.174f,
0.0f, 3.6f, 2.25f,
-0.8812f, 3.6f, 1.937f,
-0.8368f, 3.711f, 1.91f,
-0.8332f, 3.748f, 1.942f,
-0.8541f, 3.711f, 2.005f,
-0.8831f, 3.6f, 2.076f,
-1.542f, 3.6f, 1.491f,
-1.492f, 3.711f, 1.47f,
-1.501f, 3.748f, 1.494f,
-1.544f, 3.711f, 1.543f,
-1.597f, 3.6f, 1.597f,
-1.956f, 3.6f, 0.8242f,
-1.918f, 3.711f, 0.8128f,
-1.944f, 3.748f, 0.8261f,
-2.006f, 3.711f, 0.8532f,
-2.076f, 3.6f, 0.8831f,
-2.1f, 3.6f, 0.0f,
-2.071f, 3.711f, 0.0f,
-2.105f, 3.748f, 0.0f,
-2.174f, 3.711f, 0.0f,
-2.25f, 3.6f, 0.0f,
-1.937f, 3.6f, -0.8242f,
-1.91f, 3.711f, -0.8128f,
-1.942f, 3.748f, -0.8261f,
-2.005f, 3.711f, -0.8532f,
-2.076f, 3.6f, -0.8831f,
-1.491f, 3.6f, -1.491f,
-1.47f, 3.711f, -1.47f,
-1.494f, 3.748f, -1.494f,
-1.543f, 3.711f, -1.543f,
-1.597f, 3.6f, -1.597f,
-0.8242f, 3.6f, -1.937f,
-0.8128f, 3.711f, -1.91f,
-0.8261f, 3.748f, -1.942f,
-0.8532f, 3.711f, -2.005f,
-0.8831f, 3.6f, -2.076f,
0.0f, 3.6f, -2.1f,
0.0f, 3.711f, -2.071f,
0.0f, 3.748f, -2.105f,
0.0f, 3.711f, -2.174f,
0.0f, 3.6f, -2.25f,
0.8242f, 3.6f, -1.937f,
0.8128f, 3.711f, -1.91f,
0.8261f, 3.748f, -1.942f,
0.8532f, 3.711f, -2.005f,
0.8831f, 3.6f, -2.076f,
1.491f, 3.6f, -1.491f,
1.47f, 3.711f, -1.47f,
1.494f, 3.748f, -1.494f,
1.543f, 3.711f, -1.543f,
1.597f, 3.6f, -1.597f,
1.937f, 3.6f, -0.8242f,
1.91f, 3.711f, -0.8128f,
1.942f, 3.748f, -0.8261f,
2.005f, 3.711f, -0.8532f,
2.076f, 3.6f, -0.8831f,
2.525f, 3.011f, 0.0f,
2.766f, 2.433f, 0.0f,
2.936f, 1.876f, 0.0f,
3.0f, 1.35f, 0.0f,
2.33f, 3.011f, 0.9912f,
2.551f, 2.433f, 1.086f,
2.708f, 1.876f, 1.152f,
2.767f, 1.35f, 1.178f,
1.793f, 3.011f, 1.793f,
1.964f, 2.433f, 1.964f,
2.084f, 1.876f, 2.084f,
2.13f, 1.35f, 2.13f,
0.9912f, 3.011f, 2.33f,
1.086f, 2.433f, 2.551f,
1.152f, 1.876f, 2.708f,
1.178f, 1.35f, 2.767f,
0.0f, 3.011f, 2.525f,
0.0f, 2.433f, 2.766f,
0.0f, 1.876f, 2.936f,
0.0f, 1.35f, 3.0f,
-0.9912f, 3.011f, 2.33f,
-1.086f, 2.433f, 2.551f,
-1.152f, 1.876f, 2.708f,
-1.178f, 1.35f, 2.767f,
-1.793f, 3.011f, 1.793f,
-1.964f, 2.433f, 1.964f,
-2.084f, 1.876f, 2.084f,
-2.13f, 1.35f, 2.13f,
-2.33f, 3.011f, 0.9912f,
-2.551f, 2.433f, 1.086f,
-2.708f, 1.876f, 1.152f,
-2.767f, 1.35f, 1.178f,
-2.525f, 3.011f, 0.0f,
-2.766f, 2.433f, 0.0f,
-2.936f, 1.876f, 0.0f,
-3.0f, 1.35f, 0.0f,
-2.33f, 3.011f, -0.9912f,
-2.551f, 2.433f, -1.086f,
-2.708f, 1.876f, -1.152f,
-2.767f, 1.35f, -1.178f,
-1.793f, 3.011f, -1.793f,
-1.964f, 2.433f, -1.964f,
-2.084f, 1.876f, -2.084f,
-2.13f, 1.35f, -2.13f,
-0.9912f, 3.011f, -2.33f,
-1.086f, 2.433f, -2.551f,
-1.152f, 1.876f, -2.708f,
-1.178f, 1.35f, -2.767f,
0.0f, 3.011f, -2.525f,
0.0f, 2.433f, -2.766f,
0.0f, 1.876f, -2.936f,
0.0f, 1.35f, -3.0f,
0.9912f, 3.011f, -2.33f,
1.086f, 2.433f, -2.551f,
1.152f, 1.876f, -2.708f,
1.178f, 1.35f, -2.767f,
1.793f, 3.011f, -1.793f,
1.964f, 2.433f, -1.964f,
2.084f, 1.876f, -2.084f,
2.13f, 1.35f, -2.13f,
2.33f, 3.011f, -0.9912f,
2.551f, 2.433f, -1.086f,
2.708f, 1.876f, -1.152f,
2.767f, 1.35f, -1.178f,
2.883f, 0.9053f, 0.0f,
2.625f, 0.5766f, 0.0f,
2.367f, 0.3533f, 0.0f,
2.25f, 0.225f, 0.0f,
2.659f, 0.9053f, 1.132f,
2.422f, 0.5766f, 1.03f,
2.184f, 0.3533f, 0.9291f,
2.076f, 0.225f, 0.8831f,
2.047f, 0.9053f, 2.047f,
1.864f, 0.5766f, 1.864f,
1.681f, 0.3533f, 1.681f,
1.597f, 0.225f, 1.597f,
1.132f, 0.9053f, 2.659f,
1.03f, 0.5766f, 2.422f,
0.9291f, 0.3533f, 2.184f,
0.8831f, 0.225f, 2.076f,
0.0f, 0.9053f, 2.883f,
0.0f, 0.5766f, 2.625f,
0.0f, 0.3533f, 2.367f,
0.0f, 0.225f, 2.25f,
-1.132f, 0.9053f, 2.659f,
-1.03f, 0.5766f, 2.422f,
-0.9291f, 0.3533f, 2.184f,
-0.8831f, 0.225f, 2.076f,
-2.047f, 0.9053f, 2.047f,
-1.864f, 0.5766f, 1.864f,
-1.681f, 0.3533f, 1.681f,
-1.597f, 0.225f, 1.597f,
-2.659f, 0.9053f, 1.132f,
-2.422f, 0.5766f, 1.03f,
-2.184f, 0.3533f, 0.9291f,
-2.076f, 0.225f, 0.8831f,
-2.883f, 0.9053f, 0.0f,
-2.625f, 0.5766f, 0.0f,
-2.367f, 0.3533f, 0.0f,
-2.25f, 0.225f, 0.0f,
-2.659f, 0.9053f, -1.132f,
-2.422f, 0.5766f, -1.03f,
-2.184f, 0.3533f, -0.9291f,
-2.076f, 0.225f, -0.8831f,
-2.047f, 0.9053f, -2.047f,
-1.864f, 0.5766f, -1.864f,
-1.681f, 0.3533f, -1.681f,
-1.597f, 0.225f, -1.597f,
-1.132f, 0.9053f, -2.659f,
-1.03f, 0.5766f, -2.422f,
-0.9291f, 0.3533f, -2.184f,
-0.8831f, 0.225f, -2.076f,
0.0f, 0.9053f, -2.883f,
0.0f, 0.5766f, -2.625f,
0.0f, 0.3533f, -2.367f,
0.0f, 0.225f, -2.25f,
1.132f, 0.9053f, -2.659f,
1.03f, 0.5766f, -2.422f,
0.9291f, 0.3533f, -2.184f,
0.8831f, 0.225f, -2.076f,
2.047f, 0.9053f, -2.047f,
1.864f, 0.5766f, -1.864f,
1.681f, 0.3533f, -1.681f,
1.597f, 0.225f, -1.597f,
2.659f, 0.9053f, -1.132f,
2.422f, 0.5766f, -1.03f,
2.184f, 0.3533f, -0.9291f,
2.076f, 0.225f, -0.8831f,
2.199f, 0.1424f, 0.0f,
1.927f, 0.07031f, 0.0f,
1.253f, 0.01934f, 0.0f,
0.0f, 0.0f, 0.0f,
2.029f, 0.1424f, 0.8631f,
1.777f, 0.07031f, 0.7562f,
1.156f, 0.01934f, 0.4919f,
1.561f, 0.1424f, 1.561f,
1.368f, 0.07031f, 1.368f,
0.8899f, 0.01934f, 0.8899f,
0.8631f, 0.1424f, 2.029f,
0.7562f, 0.07031f, 1.777f,
0.4919f, 0.01934f, 1.156f,
0.0f, 0.1424f, 2.199f,
0.0f, 0.07031f, 1.927f,
0.0f, 0.01934f, 1.253f,
-0.8631f, 0.1424f, 2.029f,
-0.7562f, 0.07031f, 1.777f,
-0.4919f, 0.01934f, 1.156f,
-1.561f, 0.1424f, 1.561f,
-1.368f, 0.07031f, 1.368f,
-0.8899f, 0.01934f, 0.8899f,
-2.029f, 0.1424f, 0.8631f,
-1.777f, 0.07031f, 0.7562f,
-1.156f, 0.01934f, 0.4919f,
-2.199f, 0.1424f, 0.0f,
-1.927f, 0.07031f, 0.0f,
-1.253f, 0.01934f, 0.0f,
-2.029f, 0.1424f, -0.8631f,
-1.777f, 0.07031f, -0.7562f,
-1.156f, 0.01934f, -0.4919f,
-1.561f, 0.1424f, -1.561f,
-1.368f, 0.07031f, -1.368f,
-0.8899f, 0.01934f, -0.8899f,
-0.8631f, 0.1424f, -2.029f,
-0.7562f, 0.07031f, -1.777f,
-0.4919f, 0.01934f, -1.156f,
0.0f, 0.1424f, -2.199f,
0.0f, 0.07031f, -1.927f,
0.0f, 0.01934f, -1.253f,
0.8631f, 0.1424f, -2.029f,
0.7562f, 0.07031f, -1.777f,
0.4919f, 0.01934f, -1.156f,
1.561f, 0.1424f, -1.561f,
1.368f, 0.07031f, -1.368f,
0.8899f, 0.01934f, -0.8899f,
2.029f, 0.1424f, -0.8631f,
1.777f, 0.07031f, -0.7562f,
1.156f, 0.01934f, -0.4919f,
-2.4f, 3.038f, 0.0f,
-3.101f, 3.032f, 0.0f,
-3.619f, 2.995f, 0.0f,
-3.94f, 2.895f, 0.0f,
-4.05f, 2.7f, 0.0f,
-2.377f, 3.09f, 0.2531f,
-3.122f, 3.084f, 0.2531f,
-3.669f, 3.041f, 0.2531f,
-4.005f, 2.926f, 0.2531f,
-4.12f, 2.7f, 0.2531f,
-2.325f, 3.206f, 0.3375f,
-3.168f, 3.198f, 0.3375f,
-3.778f, 3.143f, 0.3375f,
-4.15f, 2.993f, 0.3375f,
-4.275f, 2.7f, 0.3375f,
-2.273f, 3.322f, 0.2531f,
-3.214f, 3.313f, 0.2531f,
-3.888f, 3.244f, 0.2531f,
-4.294f, 3.06f, 0.2531f,
-4.43f, 2.7f, 0.2531f,
-2.25f, 3.375f, 0.0f,
-3.234f, 3.364f, 0.0f,
-3.938f, 3.291f, 0.0f,
-4.359f, 3.09f, 0.0f,
-4.5f, 2.7f, 0.0f,
-2.273f, 3.322f, -0.2531f,
-3.214f, 3.313f, -0.2531f,
-3.888f, 3.244f, -0.2531f,
-4.294f, 3.06f, -0.2531f,
-4.43f, 2.7f, -0.2531f,
-2.325f, 3.206f, -0.3375f,
-3.168f, 3.198f, -0.3375f,
-3.778f, 3.143f, -0.3375f,
-4.15f, 2.993f, -0.3375f,
-4.275f, 2.7f, -0.3375f,
-2.377f, 3.09f, -0.2531f,
-3.122f, 3.084f, -0.2531f,
-3.669f, 3.041f, -0.2531f,
-4.005f, 2.926f, -0.2531f,
-4.12f, 2.7f, -0.2531f,
-3.991f, 2.394f, 0.0f,
-3.806f, 2.025f, 0.0f,
-3.48f, 1.656f, 0.0f,
-3.0f, 1.35f, 0.0f,
-4.055f, 2.365f, 0.2531f,
-3.852f, 1.98f, 0.2531f,
-3.496f, 1.6f, 0.2531f,
-2.977f, 1.28f, 0.2531f,
-4.196f, 2.3f, 0.3375f,
-3.952f, 1.881f, 0.3375f,
-3.531f, 1.478f, 0.3375f,
-2.925f, 1.125f, 0.3375f,
-4.336f, 2.235f, 0.2531f,
-4.051f, 1.782f, 0.2531f,
-3.566f, 1.356f, 0.2531f,
-2.873f, 0.9703f, 0.2531f,
-4.4f, 2.205f, 0.0f,
-4.097f, 1.737f, 0.0f,
-3.582f, 1.3f, 0.0f,
-2.85f, 0.9f, 0.0f,
-4.336f, 2.235f, -0.2531f,
-4.051f, 1.782f, -0.2531f,
-3.566f, 1.356f, -0.2531f,
-2.873f, 0.9703f, -0.2531f,
-4.196f, 2.3f, -0.3375f,
-3.952f, 1.881f, -0.3375f,
-3.531f, 1.478f, -0.3375f,
-2.925f, 1.125f, -0.3375f,
-4.055f, 2.365f, -0.2531f,
-3.852f, 1.98f, -0.2531f,
-3.496f, 1.6f, -0.2531f,
-2.977f, 1.28f, -0.2531f,
2.55f, 2.137f, 0.0f,
3.27f, 2.303f, 0.0f,
3.581f, 2.7f, 0.0f,
3.752f, 3.182f, 0.0f,
4.05f, 3.6f, 0.0f,
2.55f, 1.944f, 0.5569f,
3.324f, 2.159f, 0.5028f,
3.652f, 2.617f, 0.3839f,
3.838f, 3.151f, 0.265f,
4.191f, 3.6f, 0.2109f,
2.55f, 1.519f, 0.7425f,
3.445f, 1.844f, 0.6704f,
3.806f, 2.433f, 0.5119f,
4.027f, 3.085f, 0.3533f,
4.5f, 3.6f, 0.2813f,
2.55f, 1.093f, 0.5569f,
3.566f, 1.529f, 0.5028f,
3.961f, 2.249f, 0.3839f,
4.215f, 3.018f, 0.265f,
4.809f, 3.6f, 0.2109f,
2.55f, 0.9f, 0.0f,
3.621f, 1.385f, 0.0f,
4.031f, 2.166f, 0.0f,
4.301f, 2.988f, 0.0f,
4.95f, 3.6f, 0.0f,
2.55f, 1.093f, -0.5569f,
3.566f, 1.529f, -0.5028f,
3.961f, 2.249f, -0.3839f,
4.215f, 3.018f, -0.265f,
4.809f, 3.6f, -0.2109f,
2.55f, 1.519f, -0.7425f,
3.445f, 1.844f, -0.6704f,
3.806f, 2.433f, -0.5119f,
4.027f, 3.085f, -0.3533f,
4.5f, 3.6f, -0.2813f,
2.55f, 1.944f, -0.5569f,
3.324f, 2.159f, -0.5028f,
3.652f, 2.617f, -0.3839f,
3.838f, 3.151f, -0.265f,
4.191f, 3.6f, -0.2109f,
4.158f, 3.663f, 0.0f,
4.238f, 3.684f, 0.0f,
4.261f, 3.663f, 0.0f,
4.2f, 3.6f, 0.0f,
4.308f, 3.666f, 0.1978f,
4.379f, 3.689f, 0.1687f,
4.381f, 3.668f, 0.1397f,
4.294f, 3.6f, 0.1266f,
4.64f, 3.673f, 0.2637f,
4.69f, 3.7f, 0.225f,
4.645f, 3.677f, 0.1863f,
4.5f, 3.6f, 0.1688f,
4.971f, 3.68f, 0.1978f,
5.001f, 3.711f, 0.1687f,
4.909f, 3.687f, 0.1397f,
4.706f, 3.6f, 0.1266f,
5.122f, 3.683f, 0.0f,
5.142f, 3.716f, 0.0f,
5.029f, 3.691f, 0.0f,
4.8f, 3.6f, 0.0f,
4.971f, 3.68f, -0.1978f,
5.001f, 3.711f, -0.1687f,
4.909f, 3.687f, -0.1397f,
4.706f, 3.6f, -0.1266f,
4.64f, 3.673f, -0.2637f,
4.69f, 3.7f, -0.225f,
4.645f, 3.677f, -0.1863f,
4.5f, 3.6f, -0.1688f,
4.308f, 3.666f, -0.1978f,
4.379f, 3.689f, -0.1687f,
4.381f, 3.668f, -0.1397f,
4.294f, 3.6f, -0.1266f,
0.0f, 4.725f, 0.0f,
0.5109f, 4.651f, 0.0f,
0.4875f, 4.472f, 0.0f,
0.2953f, 4.25f, 0.0f,
0.3f, 4.05f, 0.0f,
0.4715f, 4.651f, 0.2011f,
0.4499f, 4.472f, 0.1918f,
0.2725f, 4.25f, 0.1161f,
0.2768f, 4.05f, 0.1178f,
0.3632f, 4.651f, 0.3632f,
0.3465f, 4.472f, 0.3465f,
0.2098f, 4.25f, 0.2098f,
0.213f, 4.05f, 0.213f,
0.2011f, 4.651f, 0.4715f,
0.1918f, 4.472f, 0.4499f,
0.1161f, 4.25f, 0.2725f,
0.1178f, 4.05f, 0.2768f,
0.0f, 4.651f, 0.5109f,
0.0f, 4.472f, 0.4875f,
0.0f, 4.25f, 0.2953f,
0.0f, 4.05f, 0.3f,
-0.2011f, 4.651f, 0.4715f,
-0.1918f, 4.472f, 0.4499f,
-0.1161f, 4.25f, 0.2725f,
-0.1178f, 4.05f, 0.2768f,
-0.3632f, 4.651f, 0.3632f,
-0.3465f, 4.472f, 0.3465f,
-0.2098f, 4.25f, 0.2098f,
-0.213f, 4.05f, 0.213f,
-0.4715f, 4.651f, 0.2011f,
-0.4499f, 4.472f, 0.1918f,
-0.2725f, 4.25f, 0.1161f,
-0.2768f, 4.05f, 0.1178f,
-0.5109f, 4.651f, 0.0f,
-0.4875f, 4.472f, 0.0f,
-0.2953f, 4.25f, 0.0f,
-0.3f, 4.05f, 0.0f,
-0.4715f, 4.651f, -0.2011f,
-0.4499f, 4.472f, -0.1918f,
-0.2725f, 4.25f, -0.1161f,
-0.2768f, 4.05f, -0.1178f,
-0.3632f, 4.651f, -0.3632f,
-0.3465f, 4.472f, -0.3465f,
-0.2098f, 4.25f, -0.2098f,
-0.213f, 4.05f, -0.213f,
-0.2011f, 4.651f, -0.4715f,
-0.1918f, 4.472f, -0.4499f,
-0.1161f, 4.25f, -0.2725f,
-0.1178f, 4.05f, -0.2768f,
0.0f, 4.651f, -0.5109f,
0.0f, 4.472f, -0.4875f,
0.0f, 4.25f, -0.2953f,
0.0f, 4.05f, -0.3f,
0.2011f, 4.651f, -0.4715f,
0.1918f, 4.472f, -0.4499f,
0.1161f, 4.25f, -0.2725f,
0.1178f, 4.05f, -0.2768f,
0.3632f, 4.651f, -0.3632f,
0.3465f, 4.472f, -0.3465f,
0.2098f, 4.25f, -0.2098f,
0.213f, 4.05f, -0.213f,
0.4715f, 4.651f, -0.2011f,
0.4499f, 4.472f, -0.1918f,
0.2725f, 4.25f, -0.1161f,
0.2768f, 4.05f, -0.1178f,
0.6844f, 3.916f, 0.0f,
1.237f, 3.825f, 0.0f,
1.734f, 3.734f, 0.0f,
1.95f, 3.6f, 0.0f,
0.6313f, 3.916f, 0.2686f,
1.142f, 3.825f, 0.4857f,
1.6f, 3.734f, 0.6807f,
1.799f, 3.6f, 0.7654f,
0.4859f, 3.916f, 0.4859f,
0.8786f, 3.825f, 0.8786f,
1.231f, 3.734f, 1.231f,
1.385f, 3.6f, 1.385f,
0.2686f, 3.916f, 0.6313f,
0.4857f, 3.825f, 1.142f,
0.6807f, 3.734f, 1.6f,
0.7654f, 3.6f, 1.799f,
0.0f, 3.916f, 0.6844f,
0.0f, 3.825f, 1.237f,
0.0f, 3.734f, 1.734f,
0.0f, 3.6f, 1.95f,
-0.2686f, 3.916f, 0.6313f,
-0.4857f, 3.825f, 1.142f,
-0.6807f, 3.734f, 1.6f,
-0.7654f, 3.6f, 1.799f,
-0.4859f, 3.916f, 0.4859f,
-0.8786f, 3.825f, 0.8786f,
-1.231f, 3.734f, 1.231f,
-1.385f, 3.6f, 1.385f,
-0.6313f, 3.916f, 0.2686f,
-1.142f, 3.825f, 0.4857f,
-1.6f, 3.734f, 0.6807f,
-1.799f, 3.6f, 0.7654f,
-0.6844f, 3.916f, 0.0f,
-1.237f, 3.825f, 0.0f,
-1.734f, 3.734f, 0.0f,
-1.95f, 3.6f, 0.0f,
-0.6313f, 3.916f, -0.2686f,
-1.142f, 3.825f, -0.4857f,
-1.6f, 3.734f, -0.6807f,
-1.799f, 3.6f, -0.7654f,
-0.4859f, 3.916f, -0.4859f,
-0.8786f, 3.825f, -0.8786f,
-1.231f, 3.734f, -1.231f,
-1.385f, 3.6f, -1.385f,
-0.2686f, 3.916f, -0.6313f,
-0.4857f, 3.825f, -1.142f,
-0.6807f, 3.734f, -1.6f,
-0.7654f, 3.6f, -1.799f,
0.0f, 3.916f, -0.6844f,
0.0f, 3.825f, -1.237f,
0.0f, 3.734f, -1.734f,
0.0f, 3.6f, -1.95f,
0.2686f, 3.916f, -0.6313f,
0.4857f, 3.825f, -1.142f,
0.6807f, 3.734f, -1.6f,
0.7654f, 3.6f, -1.799f,
0.4859f, 3.916f, -0.4859f,
0.8786f, 3.825f, -0.8786f,
1.231f, 3.734f, -1.231f,
1.385f, 3.6f, -1.385f,
0.6313f, 3.916f, -0.2686f,
1.142f, 3.825f, -0.4857f,
1.6f, 3.734f, -0.6807f,
1.799f, 3.6f, -0.7654f
};
/* 530 normals */
const int numNormals = 530;
const float Normals[530][3] = {
0.0486f, -0.9986f, 0.0168f,
0.9976f, -0.0678f, -0.0008f,
-0.233f, 0.8502f, -0.4719f,
-0.2299f, 0.9679f, 0.1004f,
-0.1648f, 0.985f, 0.0501f,
-0.0117f, 0.7461f, 0.6656f,
-0.0888f, 0.9692f, 0.2294f,
0.6449f, -0.7172f, -0.2637f,
-0.066f, 0.9851f, 0.1583f,
-0.6585f, -0.342f, -0.6703f,
-0.293f, 0.9558f, 0.0209f,
0.179f, 0.9825f, -0.0513f,
-0.0094f, 0.903f, 0.4295f,
-0.0059f, -0.986f, -0.1662f,
-0.7355f, 0.6774f, -0.0026f,
-0.997f, 0.0763f, 0.0019f,
-0.1478f, 0.9333f, 0.3271f,
-0.3014f, -0.6034f, -0.7382f,
-0.7048f, -0.0681f, 0.706f,
-0.3361f, 0.9332f, 0.1263f,
0.3709f, 0.1524f, -0.916f,
-0.3399f, -0.4121f, 0.8453f,
0.1921f, 0.9724f, -0.1316f,
-0.2671f, 0.7429f, 0.6137f,
0.0888f, 0.9692f, -0.2294f,
0.066f, 0.9851f, -0.1583f,
0.9411f, 0.338f, 0.001f,
0.8666f, -0.2559f, 0.4282f,
-0.8029f, 0.4968f, 0.3293f,
-0.0008f, -0.0678f, -0.9976f,
-0.8453f, -0.4121f, -0.3399f,
-0.4801f, -0.8741f, 0.0733f,
0.6355f, -0.772f, 0.0006f,
-0.9215f, -0.0678f, 0.3822f,
-0.6698f, -0.6907f, -0.2723f,
0.3734f, 0.876f, -0.3051f,
0.3548f, -0.4118f, 0.8393f,
-0.3629f, 0.2429f, 0.8995f,
0.9033f, 0.2079f, 0.375f,
-0.2824f, 0.5939f, 0.7532f,
0.8938f, 0.4452f, 0.0532f,
0.1478f, 0.9333f, -0.3271f,
0.0085f, -0.0031f, -0.9999f,
0.3595f, 0.933f, 0.0115f,
0.8995f, 0.2429f, 0.3629f,
0.7048f, -0.0681f, -0.706f,
-0.6428f, -0.7172f, -0.2688f,
0.6366f, -0.447f, 0.6283f,
-0.1213f, -0.9861f, -0.1128f,
0.8003f, 0.4978f, 0.334f,
0.3361f, 0.9332f, -0.1263f,
0.3399f, -0.4121f, -0.8453f,
-0.3909f, 0.4452f, 0.8055f,
0.0117f, 0.7462f, -0.6655f,
0.9215f, -0.0678f, -0.3822f,
0.3582f, -0.7656f, 0.5343f,
-0.9782f, 0.2075f, -0.0011f,
0.2824f, 0.5939f, -0.7532f,
0.035f, -0.8413f, 0.5393f,
-0.8044f, 0.5934f, 0.0262f,
-0.1128f, -0.9861f, 0.1213f,
0.13f, -0.1396f, 0.9816f,
0.6644f, 0.3392f, 0.6659f,
-0.0042f, -0.6898f, -0.7239f,
-0.1587f, 0.9851f, 0.065f,
-0.8719f, -0.3415f, 0.3508f,
0.6486f, 0.4756f, -0.5941f,
-0.4991f, 0.8499f, -0.1684f,
-0.3969f, 0.6342f, -0.6634f,
0.7041f, -0.3863f, -0.5956f,
0.3909f, 0.4452f, -0.8055f,
-0.0391f, -0.0113f, 0.9991f,
-0.3321f, 0.5936f, -0.733f,
0.8523f, -0.5219f, -0.0338f,
0.329f, 0.4978f, 0.8023f,
0.8044f, 0.5934f, -0.0262f,
0.1128f, -0.9861f, -0.1213f,
0.0178f, 0.9861f, -0.1651f,
0.3491f, 0.4045f, 0.8452f,
-0.2727f, 0.8505f, 0.4496f,
0.065f, 0.9851f, 0.1587f,
-0.0005f, 0.4037f, 0.9148f,
-0.0077f, -0.4109f, -0.9116f,
0.5609f, -0.604f, 0.5661f,
0.8236f, 0.5668f, -0.0138f,
0.1587f, 0.9851f, -0.065f,
0.8719f, -0.3415f, -0.3508f,
-0.7382f, -0.6034f, 0.3014f,
0.0346f, 0.8495f, 0.5263f,
-0.4373f, -0.7921f, -0.4257f,
-0.0532f, 0.4452f, 0.8938f,
0.0689f, -0.9861f, 0.1509f,
-0.1509f, -0.9861f, 0.0689f,
0.7706f, -0.2424f, -0.5893f,
-0.7543f, -0.6564f, 0.0105f,
0.0005f, 0.4037f, -0.9148f,
-0.9116f, -0.4109f, 0.0077f,
0.0058f, -0.0438f, 0.999f,
0.1719f, 0.985f, 0.0005f,
-0.1697f, 0.9693f, 0.1774f,
0.5874f, -0.5124f, 0.6263f,
0.7382f, -0.6034f, -0.3014f,
-0.1518f, 0.985f, -0.081f,
0.646f, 0.4051f, 0.6468f,
0.334f, 0.4978f, -0.8003f,
-0.7354f, -0.6034f, -0.3082f,
-0.6919f, 0.2428f, -0.6798f,
0.0532f, 0.4452f, -0.8938f,
0.3547f, -0.3173f, 0.8794f,
0.9879f, -0.1547f, -0.0033f,
-0.0462f, -0.9986f, 0.0223f,
-0.6088f, 0.4806f, 0.6311f,
-0.109f, -0.1969f, -0.9743f,
0.1509f, -0.9861f, -0.0689f,
-0.0568f, 0.9983f, 0.0009f,
0.9074f, -0.3096f, -0.2839f,
0.8677f, 0.4969f, 0.0026f,
-0.2723f, -0.6907f, 0.6698f,
-0.4734f, -0.6798f, 0.5599f,
0.9116f, -0.4109f, -0.0077f,
0.1697f, 0.9693f, -0.1774f,
0.5875f, 0.5937f, 0.5497f,
-0.3232f, 0.6846f, 0.6533f,
-0.5078f, -0.6913f, 0.5139f,
-0.4612f, 0.7474f, -0.478f,
-0.2071f, -0.8049f, 0.556f,
-0.6976f, -0.7164f, -0.0027f,
-0.8697f, 0.3388f, 0.3587f,
0.0462f, -0.9986f, -0.0223f,
0.2723f, -0.6907f, -0.6698f,
-0.829f, -0.4466f, -0.3365f,
0.9148f, 0.4037f, 0.0005f,
-0.1583f, 0.9851f, -0.066f,
0.148f, 0.9838f, 0.1002f,