Thu, 19 Mar 2020 21:06:06 +0200
PolygonObjectEditor can now modify the object properly
3 | 1 | #pragma once |
14 | 2 | #include "object.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 Edge; | |
7 | } | |
8 | ||
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
33
diff
changeset
|
9 | class ldraw::Edge : public ColoredObject |
3 | 10 | { |
11 | public: | |
13 | 12 | using BaseClass = ColoredObject; |
3 | 13 | Edge() = default; |
33
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
14 | Edge(const glm::vec3& point_1, const glm::vec3& point_2, |
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
33
diff
changeset
|
15 | const Color colorIndex = ldraw::edgeColor); |
77
028798a72591
added some meta stuff, simplified quadrilateral splitting and tested it
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
16 | Edge(const std::array<glm::vec3, 2>& vertices, const Color color); |
3 | 17 | QVariant getProperty(Property property) const override; |
6 | 18 | QString textRepresentation() const override; |
21 | 19 | void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override; |
81
62373840e33a
object editor widgets start to form up
Teemu Piippo <teemu@hecknology.net>
parents:
77
diff
changeset
|
20 | int numPoints() const override; |
62373840e33a
object editor widgets start to form up
Teemu Piippo <teemu@hecknology.net>
parents:
77
diff
changeset
|
21 | const glm::vec3& getPoint(int index) const override; |
33
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
22 | glm::vec3 point_1 = {}; |
4c41bfe2ec6e
replaced matrix and vertex classes with glm
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
23 | glm::vec3 point_2 = {}; |
86
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
81
diff
changeset
|
24 | protected: |
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
81
diff
changeset
|
25 | void setProperty(SetPropertyResult* result, const PropertyKeyValue& pair) override; |
3 | 26 | }; |