Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
The BRepBody.orientedMinimumBoundingBox Property has been in Preview for 10months now.
When using this method of getting a orientedMinimumBoundingBox ir works wrong sometimes:
const auto physicalProperties = body->getPhysicalProperties(HighCalculationAccuracy);
JCAD_ASSERT_FUSION_RESULT(physicalProperties);
Ptr<Vector3D> xAxis;
Ptr<Vector3D> yAxis;
Ptr<Vector3D> zAxis;
JCAD_ASSERT_FUSION_RESULT(physicalProperties->getPrincipalAxes(xAxis, yAxis, zAxis));
return Application::get()->measureManager()->getOrientedBoundingBox(body, xAxis, yAxis);
But the property on BrepBody works correctly.
Is it safe to release the BRepBody.orientedMinimumBoundingBox to users now?
Solved! Go to Solution.