src/linetypes/edge.cpp

Sun, 19 Jan 2020 14:25:43 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 19 Jan 2020 14:25:43 +0200
changeset 24
1a0faaaceb84
parent 21
0133e565e072
child 33
4c41bfe2ec6e
permissions
-rw-r--r--

added license

#include "edge.h"

linetypes::Edge::Edge(
	const Point3D& point_1,
	const Point3D& point_2,
	const Color color_index) :
	ColoredObject{color_index},
	point_1{point_1},
	point_2{point_2} {}

linetypes::Edge::Edge(const QVector<Point3D>& vertices, const Color color) :
	ColoredObject{color},
	point_1{vertices[0]},
	point_2{vertices[1]}
{
}

QVariant linetypes::Edge::getProperty(Property property) const
{
	switch (property)
	{
	case Property::Point1:
		return point_1;
	case Property::Point2:
		return point_2;
	default:
		return BaseClass::getProperty(property);
	}
}

auto linetypes::Edge::setProperty(Property property, const QVariant& value)
	-> SetPropertyResult
{
	switch (property)
	{
	case Property::Point1:
		point_1 = value.value<Point3D>();
		return SetPropertyResult::Success;
	case Property::Point2:
		point_2 = value.value<Point3D>();
		return SetPropertyResult::Success;
	default:
		return BaseClass::setProperty(property, value);
	}
}

QString linetypes::Edge::textRepresentation() const
{
	return utility::format("%1 %2", vertexToStringParens(point_1), vertexToStringParens(point_2));
}

void linetypes::Edge::getPolygons(
	std::vector<gl::Polygon>& polygons,
	GetPolygonsContext* context) const
{
	Q_UNUSED(context)
	polygons.push_back(gl::edgeLine(this->point_1, this->point_2, this->colorIndex, this->id));
}

mercurial