src/linetypes/triangle.h

Fri, 13 Dec 2019 21:35:59 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Fri, 13 Dec 2019 21:35:59 +0200
changeset 18
918b6c0f8b5b
parent 15
9e18ec63eec3
child 21
0133e565e072
permissions
-rw-r--r--

things

#include "object.h"

namespace linetypes
{
	class Triangle;
}

class linetypes::Triangle : public ColoredObject
{
public:
	Triangle() = default;
	Triangle(
		const Point3D &point_1,
		const Point3D &point_2,
		const Point3D &point_3,
		Color colorIndex = colors::main);
	Triangle(const QVector<Point3D>& vertices, const Color color);
	QVariant getProperty(Property id) const override;
	SetPropertyResult setProperty(Property id, const QVariant& value) override;
	QString textRepresentation() const override;
private:
	Point3D points[3] = {{}};
};

mercurial