Is there a way to higlight clash volumes?
-
…and make the rest transparent in one colour? Rule checkining in all its glory but visual check can be a very good alternative and highlighting the volume where models/component clash would be helpful. Is it possible?
-
You can use the intersections of the TriangleMesh of the components that clash. I modified the example https://solibri.github.io/Developer-Platform/9.12.9/clashDetectionExample.html with the following:
.withVisualization(visualization -> { visualization.addComponent(source, transparency); visualization.addComponent(target, transparency); ARGBColor intersectionColor = ARGBColor.create(255, 0, 0, 255); TriangleMesh intersectionMesh = source.getTriangleMesh().intersection(target.getTriangleMesh()); visualization.addVisualizationItem(Mesh.create(intersectionColor, intersectionMesh.toTriangleCollection())); });Results in the following visualizations:

-
@john-lipp I’m not worthy…
Copyright © 2025 Solibri Inc. | Powered by NodeBB