src/linetypes/edge.h

Wed, 09 Mar 2022 13:01:50 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 09 Mar 2022 13:01:50 +0200
changeset 173
8a3047468994
parent 158
5bd755eaa5a8
child 177
f69d53c053df
permissions
-rw-r--r--

Fix performance issues in Model::find

#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