Sat, 14 Dec 2019 22:36:06 +0200
added missing files
#include "subfilereference.h" linetypes::SubfileReference::SubfileReference( const Point3D& position, const Matrix3x3& transformation, const QString& referenceName, const Color color) : ColoredObject{color}, position{position}, transformation{transformation}, referenceName{referenceName} { } QVariant linetypes::SubfileReference::getProperty(Property property) const { switch (property) { case Property::Position: return this->position; case Property::Transformation: return QVariant::fromValue(this->transformation); case Property::ReferenceName: return this->referenceName; default: return ColoredObject::getProperty(property); } } auto linetypes::SubfileReference::setProperty( Property property, const QVariant& value) -> SetPropertyResult { switch (property) { case Property::Position: this->position = value.value<Point3D>(); return SetPropertyResult::Success; case Property::Transformation: this->transformation = value.value<Matrix3x3>(); return SetPropertyResult::Success; case Property::ReferenceName: this->referenceName = value.toString(); return SetPropertyResult::Success; default: return ColoredObject::setProperty(property, value); } } QString linetypes::SubfileReference::textRepresentation() const { return referenceName + " " + vertexToStringParens(this->position); }