Skip to content

Commit

Permalink
When generating clipping planes for clash result groups, don't create…
Browse files Browse the repository at this point in the history
… a 1m³ one around the center but around all the clashing elements
  • Loading branch information
GeorgDangl committed Oct 4, 2024
1 parent 3e4a837 commit cfa3a78
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ public List<BcfTopic> CreateClashIssues(NavisworksClashCreationData clashCreatio
doc.Models.ResetAllPermanentMaterials();
doc.CurrentViewpoint.CopyFrom(copy);

var bcfViewpoint = GetViewpointFromNavisworksViewpoint(viewpoint, generateLargeViewpoints, shouldMoveBoundingBox ? resultGroup.Center : null, selectedItems);
var bcfViewpoint = GetViewpointFromNavisworksViewpoint(viewpoint, generateLargeViewpoints,
null, selectedItems);
bcfViewpoint.Id = resultGroup.Guid;
bcfTopics.Add(new BcfTopic
{
Expand Down

0 comments on commit cfa3a78

Please sign in to comment.