src/linetypes/edge.h

Thu, 03 Mar 2022 21:13:16 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 03 Mar 2022 21:13:16 +0200
changeset 151
e628fc2e0c72
parent 141
185eb297dc1e
child 158
5bd755eaa5a8
permissions
-rw-r--r--

Clean up Model

#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;
	Type typeIdentifier() const override;
	QString toLDrawCode() const override;
};

mercurial