SVG small fix

This commit is contained in:
Thomas Krijnen
2021-03-09 09:52:47 +01:00
parent f7175a67c8
commit 469fb9c204
+1 -2
View File
@@ -1508,7 +1508,6 @@ void SvgSerializer::finalize() {
double elev = *a; double elev = *a;
elev *= lu; elev *= lu;
auto svg_name = nameElement(storey); auto svg_name = nameElement(storey);
auto po = &start_path(*pln, drawing_name, svg_name);
gp_Pln elev_pln(gp_Ax3(gp_Pnt(0, 0, elev), gp::DZ(), gp::DX())); gp_Pln elev_pln(gp_Ax3(gp_Pnt(0, 0, elev), gp::DZ(), gp::DX()));
//, pln->Position().XDirection())); //, pln->Position().XDirection()));
@@ -1530,7 +1529,7 @@ void SvgSerializer::finalize() {
} }
write(geometry_data{ write(geometry_data{
C,trsf,storey,storey,elev,name,nameElement(storey) C,trsf,storey,storey,elev,name,nameElement(storey)
}); });
} }
} }
} }