Tue, 27 Jul 2021 11:11:32 +0300
fix too long lines
#pragma once #include "polygonobject.h" namespace ldraw { class Quadrilateral; } class ldraw::Quadrilateral : public PolygonObject<4> { public: using PolygonObject<4>::PolygonObject; QString textRepresentation() const override; void getPolygons(std::vector<gl::Polygon>& polygons, GetPolygonsContext* context) const override; void invert() override; };