src/linetypes/triangle.h

Sat, 14 Dec 2019 22:36:06 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sat, 14 Dec 2019 22:36:06 +0200
changeset 19
ed9685f44ab3
parent 18
918b6c0f8b5b
child 21
0133e565e072
permissions
-rw-r--r--

added missing files

#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