mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 01:41:57 +00:00
Use BVH tree for wire intersections
This commit is contained in:
@@ -42,7 +42,11 @@ namespace {
|
||||
}
|
||||
os << message << std::endl;
|
||||
if (entity) {
|
||||
os << entity->toString() << std::endl;
|
||||
std::string instance_string = entity->toString();
|
||||
if (instance_string.size() > 259) {
|
||||
instance_string = instance_string.substr(0, 256) + "...";
|
||||
}
|
||||
os << instance_string << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user