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 { |