--svg-write-poly

This commit is contained in:
Thomas Krijnen
2021-04-15 10:36:37 +02:00
parent dab2d5ce04
commit 776c68e2b0
3 changed files with 11 additions and 3 deletions
+6 -1
View File
@@ -145,7 +145,7 @@ protected:
storey_height_display_types storey_height_display_;
bool draw_door_arcs_, is_floor_plan_;
bool auto_section_, auto_elevation_;
bool use_namespace_, use_hlr_poly_, always_project_;
bool use_namespace_, use_hlr_poly_, always_project_, polygonal_;
IfcParse::IfcFile* file;
IfcUtil::IfcBaseEntity* storey_;
@@ -188,6 +188,7 @@ public:
, use_namespace_(false)
, use_hlr_poly_(false)
, always_project_(false)
, polygonal_(false)
, file(0)
, storey_(0)
, xcoords_begin(0)
@@ -249,6 +250,10 @@ public:
use_hlr_poly_ = b;
}
void setPolygonal(bool b) {
polygonal_ = b;
}
void setAlwaysProject(bool b) {
always_project_ = b;
}