src/linetypes/triangle.h

changeset 15
9e18ec63eec3
parent 14
20d2ed3af73d
child 18
918b6c0f8b5b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/linetypes/triangle.h	Sun Nov 03 18:17:08 2019 +0200
@@ -0,0 +1,24 @@
+#include "object.h"
+
+namespace linetypes
+{
+	class Triangle;
+}
+
+class linetypes::Triangle : public ColoredObject
+{
+public:
+	Triangle() = default;
+	Triangle(
+		const Vertex &point_1,
+		const Vertex &point_2,
+		const Vertex &point_3,
+		Color colorIndex = colors::main);
+	Triangle(const QVector<Vertex>& vertices, const Color color);
+	QVariant getProperty(Property id) const override;
+	SetPropertyResult setProperty(Property id, const QVariant& value) override;
+	QString textRepresentation() const override;
+private:
+	Vertex points[3] = {{}};
+};
+

mercurial