1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
import OCP.StdObject
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.TopoDS
import OCP.TopLoc
import OCP.gp
import OCP.StdObjMgt
__all__ = [
"StdObject_Location",
"StdObject_Shape",
"write"
]
class StdObject_Location():
"""
None
"""
def Import(self) -> OCP.TopLoc.TopLoc_Location:
"""
Import transient object from the persistent data.
"""
def PChildren(self,theChildren : Any) -> None:
"""
Gets persistent child objects
"""
@staticmethod
def Translate_s(theLoc : OCP.TopLoc.TopLoc_Location,theMap : Any) -> StdObject_Location:
"""
Creates a persistent wrapper object for a location
"""
def __init__(self) -> None: ...
pass
class StdObject_Shape():
"""
None
"""
def Import(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Import transient object from the persistent data.
"""
def PChildren(self,theChildren : Any) -> None:
"""
None
"""
def __init__(self) -> None: ...
pass
@overload
def write(theWriteData : OCP.StdObjMgt.StdObjMgt_WriteData,theAx : OCP.gp.gp_Ax1) -> OCP.StdObjMgt.StdObjMgt_WriteData:
"""
None
None
"""
@overload
def write(theWriteData : OCP.StdObjMgt.StdObjMgt_WriteData,theAx : OCP.gp.gp_Ax2d) -> OCP.StdObjMgt.StdObjMgt_WriteData:
pass
|