fix: no more scaling needed

This commit is contained in:
Björn
2025-09-15 23:35:03 +02:00
parent 2a89b50cb3
commit eeff41af20
@@ -182,10 +182,7 @@ internal sealed class RevitSendBinding : RevitBaseBinding, ISendBinding
}
// transform maps linked model elements into the main model's reference point coordinate system
// first apply the user's reference point transform (setting) then adjust for the linked model's placement relative to host.
Transform transform = (mainModelTransform ?? Transform.Identity).Multiply(
linkedModel.GetTotalTransform().Inverse
);
Transform transform = mainModelTransform ?? Transform.Identity;
// decision about whether to process elements is made here, not in the handler
// only collects elements from linked models when the setting is enabled