src/linetypes/conditionaledge.h@b54b350dff5d
src/linetypes/conditionaledge.h
Fri, 27 Aug 2021 00:55:32 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Fri, 27 Aug 2021 00:55:32 +0300
- changeset 122
- b54b350dff5d
- parent 89
-
7abaf1d64719
- child 132
-
488d0ba6070b
- permissions
- -rw-r--r--
Show concave polygons as red while drawing
#pragma once
#include "polygonobject.h"
namespace ldraw
{
class ConditionalEdge;
}
class ldraw::ConditionalEdge : public PolygonObject<4>
{
public:
using PolygonObject<4>::PolygonObject;
QString textRepresentation() const override;
};