Returns True if no defect is detected on the shape S or any of its subshapes. See the OCCT docs on BRepCheck_Analyzer::IsValid for a full description of what is checked.
(self)
| 673 | return self.wrapped.IsEqual(other.wrapped) |
| 674 | |
| 675 | def isValid(self) -> bool: |
| 676 | """ |
| 677 | Returns True if no defect is detected on the shape S or any of its |
| 678 | subshapes. See the OCCT docs on BRepCheck_Analyzer::IsValid for a full |
| 679 | description of what is checked. |
| 680 | """ |
| 681 | return BRepCheck_Analyzer(self.wrapped).IsValid() |
| 682 | |
| 683 | def BoundingBox( |
| 684 | self, tolerance: float | None = None |
no outgoing calls