diff -r 6988973515d2 -r ca23936b455b src/linetypes/edge.cpp --- a/src/linetypes/edge.cpp Wed May 25 20:36:34 2022 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -#include "edge.h" - -QString ldraw::Edge::textRepresentation() const -{ - return utility::format( - "%1 %2", - utility::vertexToStringParens(this->points[0]), - utility::vertexToStringParens(this->points[1])); -} - -void ldraw::Edge::getPolygons( - std::vector& polygons, - GetPolygonsContext* context) const -{ - Q_UNUSED(context) - polygons.push_back(gl::edgeLine(this->points[0], this->points[1], this->colorIndex, this->id)); -} - -ldraw::Object::Type ldraw::Edge::typeIdentifier() const -{ - return Type::EdgeLine; -} - -QString ldraw::Edge::toLDrawCode() const -{ - return utility::format( - "2 %1 %2 %3", - this->colorIndex.index, - utility::vertexToString(this->points[0]), - utility::vertexToString(this->points[1])); -} - -QString ldraw::Edge::iconName() const -{ - return ":/icons/linetype-edgeline.png"; -} - -QString ldraw::Edge::typeName() const -{ - return QObject::tr("edge"); -}