We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a687fe commit efd0515Copy full SHA for efd0515
1 file changed
src/ifcgeom/Converter.cpp
@@ -6,10 +6,11 @@ using namespace ifcopenshell::geometry;
6
7
ifcopenshell::geometry::Converter::Converter(const std::string& geometry_library, IfcParse::IfcFile* file, ifcopenshell::geometry::Settings& s)
8
: geometry_library_(boost::to_lower_copy(geometry_library))
9
- , settings_(s)
10
{
11
- mapping_ = impl::mapping_implementations().construct(file, settings_);
+ mapping_ = impl::mapping_implementations().construct(file, s);
12
kernel_ = kernels::construct(file, geometry_library, mapping_->settings());
+ // Mapping reads unit information and applies to settings
13
+ settings_ = mapping_->settings();
14
}
15
16
namespace {
0 commit comments