Sat, 14 Dec 2019 22:36:06 +0200
added missing files
#pragma once #include "object.h" namespace linetypes { class Edge; } class linetypes::Edge : public ColoredObject { public: using BaseClass = ColoredObject; Edge() = default; Edge(const Point3D& point_1, const Point3D& point_2, const Color colorIndex = colors::edge); Edge(const QVector<Point3D>& vertices, const Color color); QVariant getProperty(Property property) const override; SetPropertyResult setProperty( Property property, const QVariant& value) override; QString textRepresentation() const override; private: Point3D point_1 = {}; Point3D point_2 = {}; };