Reads an assembly from a STEP file. :param path: Path and filename for reading. :param unit: The unit of measurement for the STEP file. Default "MM". :return: An Assembly object.
(cls, path: str, unit: UnitLiterals = "MM")
| 629 | |
| 630 | @classmethod |
| 631 | def importStep(cls, path: str, unit: UnitLiterals = "MM") -> Self: |
| 632 | """ |
| 633 | Reads an assembly from a STEP file. |
| 634 | |
| 635 | :param path: Path and filename for reading. |
| 636 | :param unit: The unit of measurement for the STEP file. Default "MM". |
| 637 | :return: An Assembly object. |
| 638 | """ |
| 639 | |
| 640 | return cls.load(path, importType="STEP", unit=unit) |
| 641 | |
| 642 | @classmethod |
| 643 | def load( |