Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

code added for bounding box translation #501

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
code added for bounding box translation
  • Loading branch information
tomlee-dev committed Mar 29, 2023
commit b75ea290e87281c2fbfc565cb693bfd4ba17718e
1 change: 1 addition & 0 deletions Xbim.Ifc/Extensions/IfcStoreGeometryExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public static void SaveAsWexBim(this IModel model, BinaryWriter binaryStream, IE
{
binaryStream.Write((Int32)(r.Population));
var bounds = r.ToXbimRect3D();
bounds = XbimRect3D.TransformBy(bounds, t);
var centre = t.Transform(r.Centre);
//write out the centre of the region
binaryStream.Write((Single)centre.X);
Expand Down