/******************************************************************************** * * * This file is part of IfcOpenShell. * * * * IfcOpenShell is free software: you can redistribute it and/or modify * * it under the terms of the Lesser GNU General Public License as published by * * the Free Software Foundation, either version 3.0 of the License, or * * (at your option) any later version. * * * * IfcOpenShell is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * Lesser GNU General Public License for more details. * * * * You should have received a copy of the Lesser GNU General Public License * * along with this program. If not, see . * * * ********************************************************************************/ #include #include #include #include #include "OpenCascadeBasedSerializer.h" bool OpenCascadeBasedSerializer::ready() { std::ofstream test_file(out_filename.c_str(), std::ios_base::binary); bool succeeded = test_file.is_open(); test_file.close(); remove(out_filename.c_str()); return succeeded; } void OpenCascadeBasedSerializer::write(const IfcGeom::BRepElement* o) { for (IfcGeom::IfcRepresentationShapeItems::const_iterator it = o->geometry().begin(); it != o->geometry().end(); ++ it) { gp_GTrsf gtrsf = it->Placement(); const gp_Trsf& o_trsf = o->transformation().data(); gtrsf.PreMultiply(o_trsf); if (o->geometry().settings().get(IfcGeom::IteratorSettings::CONVERT_BACK_UNITS)) { gp_Trsf scale; scale.SetScaleFactor(1.0 / o->geometry().settings().unit_magnitude()); gtrsf.PreMultiply(scale); } const TopoDS_Shape& s = it->Shape(); const TopoDS_Shape moved_shape = IfcGeom::Kernel::apply_transformation(s, gtrsf); writeShape(moved_shape); } } #define RATHER_SMALL (1e-3) #define APPROXIMATELY_THE_SAME(a,b) (fabs(a-b) < RATHER_SMALL) const char* OpenCascadeBasedSerializer::getSymbolForUnitMagnitude(float mag) { if (APPROXIMATELY_THE_SAME(mag, 0.001f)) { return "MM"; } else if (APPROXIMATELY_THE_SAME(mag, 0.01f)) { return "CM"; } else if (APPROXIMATELY_THE_SAME(mag, 1.0f)) { return "M"; } else if (APPROXIMATELY_THE_SAME(mag, 0.3048f)) { return "FT"; } else if (APPROXIMATELY_THE_SAME(mag, 0.0254f)) { return "INCH"; } else { return 0; } }