src/linetypes/edge.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 14
20d2ed3af73d
child 21
0133e565e072
permissions
-rw-r--r--

things

#pragma once
#include "object.h"

namespace linetypes
{
	class Edge;
}

class linetypes::Edge : public ColoredObject
{
public:
	using BaseClass = ColoredObject;
	Edge() = default;
	Edge(const Point3D& point_1, const Point3D& point_2,
		 const Color colorIndex = colors::edge);
	Edge(const QVector<Point3D>& vertices, const Color color);
	QVariant getProperty(Property property) const override;
	SetPropertyResult setProperty(
		Property property,
		const QVariant& value) override;
	QString textRepresentation() const override;
private:
	Point3D point_1 = {};
	Point3D point_2 = {};
};

mercurial