src/linetypes/edge.h

Mon, 11 May 2020 12:18:59 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 11 May 2020 12:18:59 +0300
changeset 89
7abaf1d64719
parent 87
93ec4d630346
child 132
488d0ba6070b
permissions
-rw-r--r--

object editing

#pragma once
#include "polygonobject.h"

namespace ldraw
{
	class Edge;
}

class ldraw::Edge : public PolygonObject<2>
{
public:
	using PolygonObject::PolygonObject;
	QString textRepresentation() const override;
	void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override;
};

mercurial