Files
create/src/Mod/Import/App/StepShape.pyi
2025-09-02 08:25:37 -04:00

22 lines
512 B
Python

from typing import Any
from Base.Metadata import export
from Base.PyObjectBase import PyObjectBase
@export(
Include="Mod/Import/App/StepShape.h",
Namespace="Import",
Constructor=True,
Delete=True,
)
class StepShape(PyObjectBase):
"""
StepShape in Import
This class gives a interface to retrieve TopoShapes out of an loaded STEP file of any kind.
"""
def read(self) -> Any:
"""method read()
Read a STEP file into memory and make it accessible"""
...