Create a bounding box for this Shape. :param tolerance: Tolerance value passed to :class:`BoundBox` :returns: A :class:`BoundBox` object for this Shape
(
self, tolerance: float | None = None
)
| 681 | return BRepCheck_Analyzer(self.wrapped).IsValid() |
| 682 | |
| 683 | def BoundingBox( |
| 684 | self, tolerance: float | None = None |
| 685 | ) -> BoundBox: # need to implement that in GEOM |
| 686 | """ |
| 687 | Create a bounding box for this Shape. |
| 688 | |
| 689 | :param tolerance: Tolerance value passed to :class:`BoundBox` |
| 690 | :returns: A :class:`BoundBox` object for this Shape |
| 691 | """ |
| 692 | return BoundBox._fromTopoDS(self.wrapped, tol=tolerance) |
| 693 | |
| 694 | def mirror( |
| 695 | self, |