src/basics.h

changeset 1305
31627acdd4b5
parent 1291
9c570a30c98a
child 1308
dcc8c02530c2
equal deleted inserted replaced
1304:bb3f43293cf8 1305:31627acdd4b5
42 X, 42 X,
43 Y, 43 Y,
44 Z 44 Z
45 }; 45 };
46 46
47 enum Winding
48 {
49 NoWinding,
50 CounterClockwise,
51 Clockwise,
52 };
53
54 Winding operator^(Winding one, Winding other);
55 Winding& operator^=(Winding& one, Winding other);
56
47 // 57 //
48 // Derivative of QVector3D: this class is used for the vertices. 58 // Derivative of QVector3D: this class is used for the vertices.
49 // 59 //
50 class Vertex : public QVector3D 60 class Vertex : public QVector3D
51 { 61 {

mercurial