mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 18:16:40 +00:00
Fixes anon namespace that was causing problems with linking
This commit is contained in:
@@ -39,7 +39,6 @@ auto sign = [](double v) -> double { return v ? v/fabs(v) : 1.0; };
|
||||
// @todo change the calculation at end of this to std::lerp when upgrading to C++ 20
|
||||
template <typename T>
|
||||
auto compute_adjustment = [](double u, const T& a, const T& b, double l) -> double { return l == 0.0 ? 0.0 : u * (b - a) / l; };
|
||||
} // namespace
|
||||
|
||||
|
||||
enum segment_type_t {
|
||||
@@ -1240,6 +1239,7 @@ class curve_segment_evaluator {
|
||||
return eval_;
|
||||
}
|
||||
};
|
||||
} // namespace
|
||||
|
||||
taxonomy::ptr mapping::map_impl(const IfcSchema::IfcCurveSegment* inst) {
|
||||
// Find the next segment after inst
|
||||
|
||||
Reference in New Issue
Block a user