Sat, 05 Mar 2022 18:26:18 +0200
Added a toggle for setting whether axes are drawn
3 | 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 ConditionalEdge; | |
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::ConditionalEdge : public PolygonObject<4> |
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<4>::PolygonObject; |
6 | 13 | QString textRepresentation() const override; |
132
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
89
diff
changeset
|
14 | Type typeIdentifier() const override; |
141 | 15 | QString toLDrawCode() const override; |
158
5bd755eaa5a8
Add icons from ionicons
Teemu Piippo <teemu@hecknology.net>
parents:
141
diff
changeset
|
16 | QString iconName() const override; |
3 | 17 | }; |