QGCGlut.h 14.3 KB
Newer Older
pixhawk's avatar
pixhawk committed
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
#ifndef QGCGLUT_H
#define QGCGLUT_H


/* Copyright (c) Mark J. Kilgard, 1994, 1997. */

/**
(c) Copyright 1993, Silicon Graphics, Inc.

ALL RIGHTS RESERVED

Permission to use, copy, modify, and distribute this software
for any purpose and without fee is hereby granted, provided
that the above copyright notice appear in all copies and that
both the copyright notice and this permission notice appear in
supporting documentation, and that the name of Silicon
Graphics, Inc. not be used in advertising or publicity
pertaining to distribution of the software without specific,
written prior permission.

THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU
"AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR
OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  IN NO
EVENT SHALL SILICON GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE
ELSE FOR ANY DIRECT, SPECIAL, INCIDENTAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER,
INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF USE,
SAVINGS OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR
NOT SILICON GRAPHICS, INC.  HAS BEEN ADVISED OF THE POSSIBILITY
OF SUCH LOSS, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
ARISING OUT OF OR IN CONNECTION WITH THE POSSESSION, USE OR
PERFORMANCE OF THIS SOFTWARE.

US Government Users Restricted Rights

Use, duplication, or disclosure by the Government is subject to
restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
(c)(1)(ii) of the Rights in Technical Data and Computer
Software clause at DFARS 252.227-7013 and/or in similar or
successor clauses in the FAR or the DOD or NASA FAR
Supplement.  Unpublished-- rights reserved under the copyright
laws of the United States.  Contractor/manufacturer is Silicon
Graphics, Inc., 2011 N.  Shoreline Blvd., Mountain View, CA
94039-7311.

OpenGL(TM) is a trademark of Silicon Graphics, Inc.
*/

#include <cmath>
pixhawk's avatar
pixhawk committed
51
52
53
54
#include "OpenGL/glu.h"

namespace sgi
{
pixhawk's avatar
pixhawk committed
55
56
57
58
59
60
61
62
63
64
65
66
67

/* Some <math.h> files do not define M_PI... */
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif

static GLUquadricObj *quadObj;

#define QUAD_OBJ_INIT() { if(!quadObj) initQuadObj(); }

static void
initQuadObj(void)
{
68
69
70
    quadObj = gluNewQuadric();
    if (!quadObj)
        printf("out of memory.");
pixhawk's avatar
pixhawk committed
71
72
73
74
75
76
}

/* CENTRY */
void
glutWireSphere(GLdouble radius, GLint slices, GLint stacks)
{
77
78
79
80
81
82
83
    QUAD_OBJ_INIT();
    gluQuadricDrawStyle(quadObj, GLU_LINE);
    gluQuadricNormals(quadObj, GLU_SMOOTH);
    /* If we ever changed/used the texture or orientation state
       of quadObj, we'd need to change it to the defaults here
       with gluQuadricTexture and/or gluQuadricOrientation. */
    gluSphere(quadObj, radius, slices, stacks);
pixhawk's avatar
pixhawk committed
84
85
86
87
88
}

void
glutSolidSphere(GLdouble radius, GLint slices, GLint stacks)
{
89
90
91
92
93
94
95
    QUAD_OBJ_INIT();
    gluQuadricDrawStyle(quadObj, GLU_FILL);
    gluQuadricNormals(quadObj, GLU_SMOOTH);
    /* If we ever changed/used the texture or orientation state
       of quadObj, we'd need to change it to the defaults here
       with gluQuadricTexture and/or gluQuadricOrientation. */
    gluSphere(quadObj, radius, slices, stacks);
pixhawk's avatar
pixhawk committed
96
97
98
99
}

void
glutWireCone(GLdouble base, GLdouble height,
100
             GLint slices, GLint stacks)
pixhawk's avatar
pixhawk committed
101
{
102
103
104
105
106
107
108
    QUAD_OBJ_INIT();
    gluQuadricDrawStyle(quadObj, GLU_LINE);
    gluQuadricNormals(quadObj, GLU_SMOOTH);
    /* If we ever changed/used the texture or orientation state
       of quadObj, we'd need to change it to the defaults here
       with gluQuadricTexture and/or gluQuadricOrientation. */
    gluCylinder(quadObj, base, 0.0, height, slices, stacks);
pixhawk's avatar
pixhawk committed
109
110
111
112
}

void
glutSolidCone(GLdouble base, GLdouble height,
113
              GLint slices, GLint stacks)
pixhawk's avatar
pixhawk committed
114
{
115
116
117
118
119
120
121
    QUAD_OBJ_INIT();
    gluQuadricDrawStyle(quadObj, GLU_FILL);
    gluQuadricNormals(quadObj, GLU_SMOOTH);
    /* If we ever changed/used the texture or orientation state
       of quadObj, we'd need to change it to the defaults here
       with gluQuadricTexture and/or gluQuadricOrientation. */
    gluCylinder(quadObj, base, 0.0, height, slices, stacks);
pixhawk's avatar
pixhawk committed
122
123
124
125
126
127
128
}

/* ENDCENTRY */

static void
drawBox(GLfloat size, GLenum type)
{
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
    static GLfloat n[6][3] = {
        {-1.0, 0.0, 0.0},
        {0.0, 1.0, 0.0},
        {1.0, 0.0, 0.0},
        {0.0, -1.0, 0.0},
        {0.0, 0.0, 1.0},
        {0.0, 0.0, -1.0}
    };
    static GLint faces[6][4] = {
        {0, 1, 2, 3},
        {3, 2, 6, 7},
        {7, 6, 5, 4},
        {4, 5, 1, 0},
        {5, 6, 2, 1},
        {7, 4, 0, 3}
    };
    GLfloat v[8][3];
    GLint i;

    v[0][0] = v[1][0] = v[2][0] = v[3][0] = -size / 2;
    v[4][0] = v[5][0] = v[6][0] = v[7][0] = size / 2;
    v[0][1] = v[1][1] = v[4][1] = v[5][1] = -size / 2;
    v[2][1] = v[3][1] = v[6][1] = v[7][1] = size / 2;
    v[0][2] = v[3][2] = v[4][2] = v[7][2] = -size / 2;
    v[1][2] = v[2][2] = v[5][2] = v[6][2] = size / 2;

    for (i = 5; i >= 0; i--) {
        glBegin(type);
        glNormal3fv(&n[i][0]);
        glVertex3fv(&v[faces[i][0]][0]);
        glVertex3fv(&v[faces[i][1]][0]);
        glVertex3fv(&v[faces[i][2]][0]);
        glVertex3fv(&v[faces[i][3]][0]);
        glEnd();
    }
pixhawk's avatar
pixhawk committed
164
165
166
167
168
169
}

/* CENTRY */
void
glutWireCube(GLdouble size)
{
170
    drawBox(size, GL_LINE_LOOP);
pixhawk's avatar
pixhawk committed
171
172
173
174
175
}

void
glutSolidCube(GLdouble size)
{
176
    drawBox(size, GL_QUADS);
pixhawk's avatar
pixhawk committed
177
178
179
180
181
182
183
}

/* ENDCENTRY */

static void
doughnut(GLfloat r, GLfloat R, GLint nsides, GLint rings)
{
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
    int i, j;
    GLfloat theta, phi, theta1;
    GLfloat cosTheta, sinTheta;
    GLfloat cosTheta1, sinTheta1;
    GLfloat ringDelta, sideDelta;

    ringDelta = 2.0 * M_PI / rings;
    sideDelta = 2.0 * M_PI / nsides;

    theta = 0.0;
    cosTheta = 1.0;
    sinTheta = 0.0;
    for (i = rings - 1; i >= 0; i--) {
        theta1 = theta + ringDelta;
        cosTheta1 = cos(theta1);
        sinTheta1 = sin(theta1);
        glBegin(GL_QUAD_STRIP);
        phi = 0.0;
        for (j = nsides; j >= 0; j--) {
            GLfloat cosPhi, sinPhi, dist;

            phi += sideDelta;
            cosPhi = cos(phi);
            sinPhi = sin(phi);
            dist = R + r * cosPhi;

            glNormal3f(cosTheta1 * cosPhi, -sinTheta1 * cosPhi, sinPhi);
            glVertex3f(cosTheta1 * dist, -sinTheta1 * dist, r * sinPhi);
            glNormal3f(cosTheta * cosPhi, -sinTheta * cosPhi, sinPhi);
            glVertex3f(cosTheta * dist, -sinTheta * dist,  r * sinPhi);
        }
        glEnd();
        theta = theta1;
        cosTheta = cosTheta1;
        sinTheta = sinTheta1;
pixhawk's avatar
pixhawk committed
219
220
221
222
223
224
    }
}

/* CENTRY */
void
glutWireTorus(GLdouble innerRadius, GLdouble outerRadius,
225
              GLint nsides, GLint rings)
pixhawk's avatar
pixhawk committed
226
{
227
228
229
230
    glPushAttrib(GL_POLYGON_BIT);
    glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
    doughnut(innerRadius, outerRadius, nsides, rings);
    glPopAttrib();
pixhawk's avatar
pixhawk committed
231
232
233
234
}

void
glutSolidTorus(GLdouble innerRadius, GLdouble outerRadius,
235
               GLint nsides, GLint rings)
pixhawk's avatar
pixhawk committed
236
{
237
    doughnut(innerRadius, outerRadius, nsides, rings);
pixhawk's avatar
pixhawk committed
238
239
240
241
242
243
244
245
246
}

/* ENDCENTRY */

static GLfloat dodec[20][3];

static void
initDodecahedron(void)
{
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
    GLfloat alpha, beta;

    alpha = sqrt(2.0 / (3.0 + sqrt(5.0)));
    beta = 1.0 + sqrt(6.0 / (3.0 + sqrt(5.0)) -
                      2.0 + 2.0 * sqrt(2.0 / (3.0 + sqrt(5.0))));
    /* *INDENT-OFF* */
    dodec[0][0] = -alpha;
    dodec[0][1] = 0;
    dodec[0][2] = beta;
    dodec[1][0] = alpha;
    dodec[1][1] = 0;
    dodec[1][2] = beta;
    dodec[2][0] = -1;
    dodec[2][1] = -1;
    dodec[2][2] = -1;
    dodec[3][0] = -1;
    dodec[3][1] = -1;
    dodec[3][2] = 1;
    dodec[4][0] = -1;
    dodec[4][1] = 1;
    dodec[4][2] = -1;
    dodec[5][0] = -1;
    dodec[5][1] = 1;
    dodec[5][2] = 1;
    dodec[6][0] = 1;
    dodec[6][1] = -1;
    dodec[6][2] = -1;
    dodec[7][0] = 1;
    dodec[7][1] = -1;
    dodec[7][2] = 1;
    dodec[8][0] = 1;
    dodec[8][1] = 1;
    dodec[8][2] = -1;
    dodec[9][0] = 1;
    dodec[9][1] = 1;
    dodec[9][2] = 1;
    dodec[10][0] = beta;
    dodec[10][1] = alpha;
    dodec[10][2] = 0;
    dodec[11][0] = beta;
    dodec[11][1] = -alpha;
    dodec[11][2] = 0;
    dodec[12][0] = -beta;
    dodec[12][1] = alpha;
    dodec[12][2] = 0;
    dodec[13][0] = -beta;
    dodec[13][1] = -alpha;
    dodec[13][2] = 0;
    dodec[14][0] = -alpha;
    dodec[14][1] = 0;
    dodec[14][2] = -beta;
    dodec[15][0] = alpha;
    dodec[15][1] = 0;
    dodec[15][2] = -beta;
    dodec[16][0] = 0;
    dodec[16][1] = beta;
    dodec[16][2] = alpha;
    dodec[17][0] = 0;
    dodec[17][1] = beta;
    dodec[17][2] = -alpha;
    dodec[18][0] = 0;
    dodec[18][1] = -beta;
    dodec[18][2] = alpha;
    dodec[19][0] = 0;
    dodec[19][1] = -beta;
    dodec[19][2] = -alpha;
    /* *INDENT-ON* */
pixhawk's avatar
pixhawk committed
314
315
316
317
318
319
320
321
322
323
324
325

}

#define DIFF3(_a,_b,_c) { \
    (_c)[0] = (_a)[0] - (_b)[0]; \
    (_c)[1] = (_a)[1] - (_b)[1]; \
    (_c)[2] = (_a)[2] - (_b)[2]; \
}

static void
crossprod(GLfloat v1[3], GLfloat v2[3], GLfloat prod[3])
{
326
    GLfloat p[3];         /* in case prod == v1 or v2 */
pixhawk's avatar
pixhawk committed
327

328
329
330
331
332
333
    p[0] = v1[1] * v2[2] - v2[1] * v1[2];
    p[1] = v1[2] * v2[0] - v2[2] * v1[0];
    p[2] = v1[0] * v2[1] - v2[0] * v1[1];
    prod[0] = p[0];
    prod[1] = p[1];
    prod[2] = p[2];
pixhawk's avatar
pixhawk committed
334
335
336
337
338
}

static void
normalize(GLfloat v[3])
{
339
    GLfloat d;
pixhawk's avatar
pixhawk committed
340

341
342
343
344
345
346
347
348
349
    d = sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]);
    if (d == 0.0) {
        printf("normalize: zero length vector");
        v[0] = d = 1.0;
    }
    d = 1 / d;
    v[0] *= d;
    v[1] *= d;
    v[2] *= d;
pixhawk's avatar
pixhawk committed
350
351
352
353
354
}

static void
pentagon(int a, int b, int c, int d, int e, GLenum shadeType)
{
355
    GLfloat n0[3], d1[3], d2[3];
pixhawk's avatar
pixhawk committed
356

357
358
359
360
    DIFF3(dodec[a], dodec[b], d1);
    DIFF3(dodec[b], dodec[c], d2);
    crossprod(d1, d2, n0);
    normalize(n0);
pixhawk's avatar
pixhawk committed
361

362
363
364
365
366
367
368
369
    glBegin(shadeType);
    glNormal3fv(n0);
    glVertex3fv(&dodec[a][0]);
    glVertex3fv(&dodec[b][0]);
    glVertex3fv(&dodec[c][0]);
    glVertex3fv(&dodec[d][0]);
    glVertex3fv(&dodec[e][0]);
    glEnd();
pixhawk's avatar
pixhawk committed
370
371
372
373
374
}

static void
dodecahedron(GLenum type)
{
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
    static int inited = 0;

    if (inited == 0) {
        inited = 1;
        initDodecahedron();
    }
    pentagon(0, 1, 9, 16, 5, type);
    pentagon(1, 0, 3, 18, 7, type);
    pentagon(1, 7, 11, 10, 9, type);
    pentagon(11, 7, 18, 19, 6, type);
    pentagon(8, 17, 16, 9, 10, type);
    pentagon(2, 14, 15, 6, 19, type);
    pentagon(2, 13, 12, 4, 14, type);
    pentagon(2, 19, 18, 3, 13, type);
    pentagon(3, 0, 5, 12, 13, type);
    pentagon(6, 15, 8, 10, 11, type);
    pentagon(4, 17, 8, 15, 14, type);
    pentagon(4, 12, 5, 16, 17, type);
pixhawk's avatar
pixhawk committed
393
394
395
396
397
398
}

/* CENTRY */
void
glutWireDodecahedron(void)
{
399
    dodecahedron(GL_LINE_LOOP);
pixhawk's avatar
pixhawk committed
400
401
402
403
404
}

void
glutSolidDodecahedron(void)
{
405
    dodecahedron(GL_TRIANGLE_FAN);
pixhawk's avatar
pixhawk committed
406
407
408
409
410
411
}

/* ENDCENTRY */

static void
recorditem(GLfloat * n1, GLfloat * n2, GLfloat * n3,
412
           GLenum shadeType)
pixhawk's avatar
pixhawk committed
413
{
414
    GLfloat q0[3], q1[3];
pixhawk's avatar
pixhawk committed
415

416
417
418
419
    DIFF3(n1, n2, q0);
    DIFF3(n2, n3, q1);
    crossprod(q0, q1, q1);
    normalize(q1);
pixhawk's avatar
pixhawk committed
420

421
422
423
424
425
426
    glBegin(shadeType);
    glNormal3fv(q1);
    glVertex3fv(n1);
    glVertex3fv(n2);
    glVertex3fv(n3);
    glEnd();
pixhawk's avatar
pixhawk committed
427
428
429
430
}

static void
subdivide(GLfloat * v0, GLfloat * v1, GLfloat * v2,
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
          GLenum shadeType)
{
    int depth;
    GLfloat w0[3], w1[3], w2[3];
    GLfloat l;
    int i, j, k, n;

    depth = 1;
    for (i = 0; i < depth; i++) {
        for (j = 0; i + j < depth; j++) {
            k = depth - i - j;
            for (n = 0; n < 3; n++) {
                w0[n] = (i * v0[n] + j * v1[n] + k * v2[n]) / depth;
                w1[n] = ((i + 1) * v0[n] + j * v1[n] + (k - 1) * v2[n])
                        / depth;
                w2[n] = (i * v0[n] + (j + 1) * v1[n] + (k - 1) * v2[n])
                        / depth;
            }
            l = sqrt(w0[0] * w0[0] + w0[1] * w0[1] + w0[2] * w0[2]);
            w0[0] /= l;
            w0[1] /= l;
            w0[2] /= l;
            l = sqrt(w1[0] * w1[0] + w1[1] * w1[1] + w1[2] * w1[2]);
            w1[0] /= l;
            w1[1] /= l;
            w1[2] /= l;
            l = sqrt(w2[0] * w2[0] + w2[1] * w2[1] + w2[2] * w2[2]);
            w2[0] /= l;
            w2[1] /= l;
            w2[2] /= l;
            recorditem(w1, w0, w2, shadeType);
        }
pixhawk's avatar
pixhawk committed
463
464
465
466
467
    }
}

static void
drawtriangle(int i, GLfloat data[][3], int ndx[][3],
468
             GLenum shadeType)
pixhawk's avatar
pixhawk committed
469
{
470
    GLfloat *x0, *x1, *x2;
pixhawk's avatar
pixhawk committed
471

472
473
474
475
    x0 = data[ndx[i][0]];
    x1 = data[ndx[i][1]];
    x2 = data[ndx[i][2]];
    subdivide(x0, x1, x2, shadeType);
pixhawk's avatar
pixhawk committed
476
477
478
479
}

/* octahedron data: The octahedron produced is centered at the
   origin and has radius 1.0 */
480
481
482
483
484
485
486
static GLfloat odata[6][3] = {
    {1.0, 0.0, 0.0},
    {-1.0, 0.0, 0.0},
    {0.0, 1.0, 0.0},
    {0.0, -1.0, 0.0},
    {0.0, 0.0, 1.0},
    {0.0, 0.0, -1.0}
pixhawk's avatar
pixhawk committed
487
488
};

489
490
491
492
493
494
495
496
497
static int ondex[8][3] = {
    {0, 4, 2},
    {1, 2, 4},
    {0, 3, 4},
    {1, 4, 3},
    {0, 2, 5},
    {1, 5, 2},
    {0, 5, 3},
    {1, 3, 5}
pixhawk's avatar
pixhawk committed
498
499
500
501
502
};

static void
octahedron(GLenum shadeType)
{
503
    int i;
pixhawk's avatar
pixhawk committed
504

505
506
507
    for (i = 7; i >= 0; i--) {
        drawtriangle(i, odata, ondex, shadeType);
    }
pixhawk's avatar
pixhawk committed
508
509
510
511
512
513
}

/* CENTRY */
void
glutWireOctahedron(void)
{
514
    octahedron(GL_LINE_LOOP);
pixhawk's avatar
pixhawk committed
515
516
517
518
519
}

void
glutSolidOctahedron(void)
{
520
    octahedron(GL_TRIANGLES);
pixhawk's avatar
pixhawk committed
521
522
523
524
525
526
527
528
529
530
}

/* ENDCENTRY */

/* icosahedron data: These numbers are rigged to make an
   icosahedron of radius 1.0 */

#define X .525731112119133606
#define Z .850650808352039932

531
532
533
534
535
536
537
538
539
540
541
542
543
static GLfloat idata[12][3] = {
    {-X, 0, Z},
    {X, 0, Z},
    {-X, 0, -Z},
    {X, 0, -Z},
    {0, Z, X},
    {0, Z, -X},
    {0, -Z, X},
    {0, -Z, -X},
    {Z, X, 0},
    {-Z, X, 0},
    {Z, -X, 0},
    {-Z, -X, 0}
pixhawk's avatar
pixhawk committed
544
545
};

546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
static int indextetra[20][3] = {
    {0, 4, 1},
    {0, 9, 4},
    {9, 5, 4},
    {4, 5, 8},
    {4, 8, 1},
    {8, 10, 1},
    {8, 3, 10},
    {5, 3, 8},
    {5, 2, 3},
    {2, 7, 3},
    {7, 10, 3},
    {7, 6, 10},
    {7, 11, 6},
    {11, 0, 6},
    {0, 1, 6},
    {6, 1, 10},
    {9, 0, 11},
    {9, 11, 2},
    {9, 2, 5},
    {7, 2, 11},
pixhawk's avatar
pixhawk committed
567
568
569
570
571
};

static void
icosahedron(GLenum shadeType)
{
572
    int i;
pixhawk's avatar
pixhawk committed
573

574
575
576
    for (i = 19; i >= 0; i--) {
        drawtriangle(i, idata, indextetra, shadeType);
    }
pixhawk's avatar
pixhawk committed
577
578
579
580
581
582
}

/* CENTRY */
void
glutWireIcosahedron(void)
{
583
    icosahedron(GL_LINE_LOOP);
pixhawk's avatar
pixhawk committed
584
585
586
587
588
}

void
glutSolidIcosahedron(void)
{
589
    icosahedron(GL_TRIANGLES);
pixhawk's avatar
pixhawk committed
590
591
592
593
594
595
596
597
}

/* ENDCENTRY */

/* tetrahedron data: */

#define T       1.73205080756887729

598
599
600
601
602
static GLfloat tdata[4][3] = {
    {T, T, T},
    {T, -T, -T},
    {-T, T, -T},
    {-T, -T, T}
pixhawk's avatar
pixhawk committed
603
604
};

605
606
607
608
609
static int tndex[4][3] = {
    {0, 1, 3},
    {2, 1, 0},
    {3, 2, 0},
    {1, 2, 3}
pixhawk's avatar
pixhawk committed
610
611
612
613
614
};

static void
tetrahedron(GLenum shadeType)
{
615
    int i;
pixhawk's avatar
pixhawk committed
616

617
618
    for (i = 3; i >= 0; i--)
        drawtriangle(i, tdata, tndex, shadeType);
pixhawk's avatar
pixhawk committed
619
620
621
622
623
624
}

/* CENTRY */
void
glutWireTetrahedron(void)
{
625
    tetrahedron(GL_LINE_LOOP);
pixhawk's avatar
pixhawk committed
626
627
628
629
630
}

void
glutSolidTetrahedron(void)
{
631
    tetrahedron(GL_TRIANGLES);
pixhawk's avatar
pixhawk committed
632
633
634
}

/* ENDCENTRY */
pixhawk's avatar
pixhawk committed
635
}
pixhawk's avatar
pixhawk committed
636
637

#endif // QGCGLUT_H