src/linetypes/triangle.cpp

Tue, 28 Jan 2020 23:34:49 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 28 Jan 2020 23:34:49 +0200
changeset 34
1de2b8d64e9f
parent 33
4c41bfe2ec6e
child 35
98906a94732f
permissions
-rw-r--r--

added some sort of lighting

#include "triangle.h"

linetypes::Triangle::Triangle(
	const glm::vec3& point_1,
	const glm::vec3& point_2,
	const glm::vec3& point_3,
	Color color_index) :
	ColoredObject{color_index},
	points{point_1, point_2, point_3}
{
}

linetypes::Triangle::Triangle(const QVector<glm::vec3>& vertices, const Color color) :
	ColoredObject{color},
	points{vertices[0], vertices[1], vertices[2]}
{
}

QVariant linetypes::Triangle::getProperty(const Property id) const
{
	switch (id)
	{
	case Property::Point1:
		return QVariant::fromValue(points[0]);
	case Property::Point2:
		return QVariant::fromValue(points[1]);
	case Property::Point3:
		return QVariant::fromValue(points[2]);
	default:
		return ColoredObject::getProperty(id);
	}
}

auto linetypes::Triangle::setProperty(Property id, const QVariant& value)
	-> SetPropertyResult
{
	switch (id)
	{
	case Property::Point1:
		points[0] = value.value<glm::vec3>();
		return SetPropertyResult::Success;
	case Property::Point2:
		points[1] = value.value<glm::vec3>();
		return SetPropertyResult::Success;
	case Property::Point3:
		points[2] = value.value<glm::vec3>();
		return SetPropertyResult::Success;
	default:
		return ColoredObject::setProperty(id, value);
	}
}

QString linetypes::Triangle::textRepresentation() const
{
	return utility::format("%1 %2 %3",
		utility::vertexToStringParens(points[0]),
		utility::vertexToStringParens(points[1]),
		utility::vertexToStringParens(points[2]));
}

void linetypes::Triangle::getPolygons(
	std::vector<gl::Polygon>& polygons,
	GetPolygonsContext* context) const
{
	Q_UNUSED(context)
	polygons.push_back(gl::triangle(
		this->points[0],
		this->points[1],
		this->points[2],
		this->colorIndex,
			this->id));
}

void linetypes::Triangle::invert()
{
	//    0 1 2
	// -> 1 0 2
	std::swap(this->points[0], this->points[1]);
}

mercurial