mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
15 lines
372 B
C++
15 lines
372 B
C++
#include "IteratorSettings.h"
|
|
|
|
#include "../ifcparse/IfcLogger.h"
|
|
|
|
/*
|
|
void IfcGeom::IteratorSettings::set_deflection_tolerance(double value)
|
|
{
|
|
deflection_tolerance_ = value;
|
|
if (deflection_tolerance_ <= 1e-6) {
|
|
Logger::Message(Logger::LOG_WARNING, "Deflection tolerance cannot be set to <= 1e-6; using the default value 1e-3");
|
|
deflection_tolerance_ = 1e-3;
|
|
}
|
|
}
|
|
|
|
*/ |