src/linetypes/edge.h

Sat, 05 Mar 2022 13:32:58 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sat, 05 Mar 2022 13:32:58 +0200
changeset 163
36ea1a8aee33
parent 158
5bd755eaa5a8
child 177
f69d53c053df
permissions
-rw-r--r--

Add icons for tools

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

mercurial