Export this shape to a binary BREP file.
(self, f: str | BytesIO)
| 583 | return cls.cast(s) |
| 584 | |
| 585 | def exportBin(self, f: str | BytesIO) -> bool: |
| 586 | """ |
| 587 | Export this shape to a binary BREP file. |
| 588 | """ |
| 589 | |
| 590 | rv = BinTools.Write_s(self.wrapped, f) |
| 591 | |
| 592 | return True if rv is None else rv |
| 593 | |
| 594 | @classmethod |
| 595 | def importBin(cls, f: str | BytesIO) -> Shape: |
no outgoing calls