Export this shape to a BREP file
(self, f: str | BytesIO)
| 559 | return writer.Write(fileName) |
| 560 | |
| 561 | def exportBrep(self, f: str | BytesIO) -> bool: |
| 562 | """ |
| 563 | Export this shape to a BREP file |
| 564 | """ |
| 565 | |
| 566 | rv = BRepTools.Write_s(self.wrapped, f) |
| 567 | |
| 568 | return True if rv is None else rv |
| 569 | |
| 570 | @classmethod |
| 571 | def importBrep(cls, f: str | BytesIO) -> Shape: |
no outgoing calls