src/linetypes/edge.cpp

Thu, 03 Mar 2022 21:13:16 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 03 Mar 2022 21:13:16 +0200
changeset 151
e628fc2e0c72
parent 141
185eb297dc1e
child 158
5bd755eaa5a8
permissions
-rw-r--r--

Clean up Model

#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]));
}

mercurial