src/linetypes/edge.h

Wed, 22 Jan 2020 01:17:11 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 22 Jan 2020 01:17:11 +0200
changeset 27
c57fb7a5ffa3
parent 21
0133e565e072
child 33
4c41bfe2ec6e
permissions
-rw-r--r--

commit work done on plugging vao to the gl renderer, renders nonsense for now

#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;
	void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override;
private:
	Point3D point_1 = {};
	Point3D point_2 = {};
};

mercurial