src/linetypes/edge.cpp

changeset 200
ca23936b455b
parent 199
6988973515d2
child 201
5d201ee4a9c3
--- 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<gl::Polygon>& 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");
-}

mercurial