src/linetypes/quadrilateral.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

#pragma once
#include "object.h"

namespace linetypes
{
	class Quadrilateral;
}

class linetypes::Quadrilateral : public ColoredObject
{
public:
	Quadrilateral() = default;
	Quadrilateral(
	const Point3D &point_1,
	const Point3D &point_2,
	const Point3D &point_3,
	const Point3D &point_4,
	Color colorIndex = colors::main);
	Quadrilateral(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[4] = {{}};
};

mercurial