src/linetypes/conditionaledge.h@f9f308c8e0c5
src/linetypes/conditionaledge.h
Sun, 29 Aug 2021 20:05:24 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sun, 29 Aug 2021 20:05:24 +0300
- changeset 124
- f9f308c8e0c5
- parent 89
-
7abaf1d64719
- child 132
-
488d0ba6070b
- permissions
- -rw-r--r--
esc with draw mode now clears the polygon
#pragma once
#include "polygonobject.h"
namespace ldraw
{
class ConditionalEdge;
}
class ldraw::ConditionalEdge : public PolygonObject<4>
{
public:
using PolygonObject<4>::PolygonObject;
QString textRepresentation() const override;
};