Thu, 05 Nov 2020 14:29:58 +0200
asioita
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
1 | #pragma once |
89 | 2 | #include "polygonobject.h" |
3 | 3 | |
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
33
diff
changeset
|
4 | namespace ldraw |
3 | 5 | { |
6 | class Triangle; | |
7 | } | |
8 | ||
87
93ec4d630346
added PolygonObject and refactored away a lot of boilerplate
Teemu Piippo <teemu@hecknology.net>
parents:
86
diff
changeset
|
9 | class ldraw::Triangle : public PolygonObject<3> |
3 | 10 | { |
11 | public: | |
87
93ec4d630346
added PolygonObject and refactored away a lot of boilerplate
Teemu Piippo <teemu@hecknology.net>
parents:
86
diff
changeset
|
12 | using PolygonObject<3>::PolygonObject; |
6 | 13 | QString textRepresentation() const override; |
21 | 14 | void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override; |
26 | 15 | void invert() override; |
3 | 16 | }; |
17 |