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

#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