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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
import OCP.TopTrans
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.gp
import OCP.TopAbs
__all__ = [
"TopTrans_Array2OfOrientation",
"TopTrans_CurveTransition",
"TopTrans_SurfaceTransition"
]
class TopTrans_Array2OfOrientation():
"""
Purpose: The class Array2 represents bi-dimensional arrays of fixed size known at run time. The ranges of indices are user defined.
"""
def Assign(self,theOther : TopTrans_Array2OfOrientation) -> TopTrans_Array2OfOrientation:
"""
Assignment
"""
@staticmethod
def BeginPosition_s(theRowLower : int,arg1 : int,theColLower : int,theColUpper : int) -> int:
"""
None
"""
def ColLength(self) -> int:
"""
Returns length of the column, i.e. number of rows
"""
@staticmethod
def LastPosition_s(theRowLower : int,theRowUpper : int,theColLower : int,theColUpper : int) -> int:
"""
None
"""
def Length(self) -> int: ...
def LowerCol(self) -> int:
"""
LowerCol
"""
def LowerRow(self) -> int:
"""
LowerRow
"""
def Move(self,theOther : TopTrans_Array2OfOrientation) -> TopTrans_Array2OfOrientation:
"""
Move assignment. This array will borrow all the data from theOther. The moved object will be left uninitialized and should not be used anymore.
"""
def NbColumns(self) -> int:
"""
Returns number of columns
"""
def NbRows(self) -> int:
"""
Returns number of rows
"""
def Resize(self,theRowLower : int,theRowUpper : int,theColLower : int,theColUpper : int,theToCopyData : bool) -> None:
"""
Resizes the array to specified bounds. No re-allocation will be done if length of array does not change, but existing values will not be discarded if theToCopyData set to FALSE.
"""
def RowLength(self) -> int:
"""
Returns length of the row, i.e. number of columns
"""
def SetValue(self,theRow : int,theCol : int,theItem : OCP.TopAbs.TopAbs_Orientation) -> None:
"""
SetValue
"""
def Size(self) -> int: ...
def UpperCol(self) -> int:
"""
UpperCol
"""
def UpperRow(self) -> int:
"""
UpperRow
"""
def __call__(self,theRow : int,theCol : int) -> OCP.TopAbs.TopAbs_Orientation: ...
@overload
def __init__(self,theAlloc : Any,theRowLower : int,theRowUpper : int,theColLower : int,theColUpper : int) -> None: ...
@overload
def __init__(self) -> None: ...
@overload
def __init__(self,theOther : TopTrans_Array2OfOrientation) -> None: ...
@overload
def __init__(self,theRowLower : int,theRowUpper : int,theColLower : int,theColUpper : int) -> None: ...
@overload
def __init__(self,theBegin : OCP.TopAbs.TopAbs_Orientation,theRowLower : int,theRowUpper : int,theColLower : int,theColUpper : int) -> None: ...
def __len__(self) -> int: ...
pass
class TopTrans_CurveTransition():
"""
This algorithm is used to compute the transition of a Curve intersecting a curvilinear boundary.
"""
def Compare(self,Tole : float,Tang : OCP.gp.gp_Dir,Norm : OCP.gp.gp_Dir,Curv : float,S : OCP.TopAbs.TopAbs_Orientation,Or : OCP.TopAbs.TopAbs_Orientation) -> None:
"""
Add a curve element to the boundary. If Or is REVERSED the curve is before the intersection, else if Or is FORWARD the curv is after the intersection and if Or is INTERNAL the intersection is in the middle of the curv.
"""
@overload
def Reset(self,Tgt : OCP.gp.gp_Dir,Norm : OCP.gp.gp_Dir,Curv : float) -> None:
"""
Initialize a Transition with the local description of a Curve.
Initialize a Transition with the local description of a straight line.
"""
@overload
def Reset(self,Tgt : OCP.gp.gp_Dir) -> None: ...
def StateAfter(self) -> OCP.TopAbs.TopAbs_State:
"""
returns the state of the curve after the intersection, this is the position relative to the boundary of a point very close to the intersection on the positive side of the tangent.
"""
def StateBefore(self) -> OCP.TopAbs.TopAbs_State:
"""
returns the state of the curve before the intersection, this is the position relative to the boundary of a point very close to the intersection on the negative side of the tangent.
"""
def __init__(self) -> None: ...
pass
class TopTrans_SurfaceTransition():
"""
This algorithm is used to compute the transition of a 3D surface intersecting a topological surfacic boundary on a 3D curve ( intersection curve ). The boundary is described by a set of faces each face is described by - its support surface, - an orientation defining its matter side. The geometric elements are described locally at the intersection point by a second order development. A surface is described by the normal vector, the principal directions and the principal curvatures. A curve is described by the tangent, the normal and the curvature. The algorithm keeps track of the two faces elements closest to the part of the curve "before" and "after" the intersection, these two elements are updated for each new face. The position of the curve can be computed when at least one surface element has been given, this position is "In","Out" or "On" for the part of the curve "Before" or "After" the intersection.
"""
@overload
def Compare(self,Tole : float,Norm : OCP.gp.gp_Dir,MaxD : OCP.gp.gp_Dir,MinD : OCP.gp.gp_Dir,MaxCurv : float,MinCurv : float,S : OCP.TopAbs.TopAbs_Orientation,O : OCP.TopAbs.TopAbs_Orientation) -> None:
"""
Add a face element to the boundary.
Add a plane or a cylindric face to the boundary.
"""
@overload
def Compare(self,Tole : float,Norm : OCP.gp.gp_Dir,S : OCP.TopAbs.TopAbs_Orientation,O : OCP.TopAbs.TopAbs_Orientation) -> None: ...
@staticmethod
def GetAfter_s(Tran : OCP.TopAbs.TopAbs_Orientation) -> OCP.TopAbs.TopAbs_State:
"""
None
"""
@staticmethod
def GetBefore_s(Tran : OCP.TopAbs.TopAbs_Orientation) -> OCP.TopAbs.TopAbs_State:
"""
None
"""
@overload
def Reset(self,Tgt : OCP.gp.gp_Dir,Norm : OCP.gp.gp_Dir,MaxD : OCP.gp.gp_Dir,MinD : OCP.gp.gp_Dir,MaxCurv : float,MinCurv : float) -> None:
"""
Initialize a Surface Transition with the local description of the intersection curve and of the reference surface. PREQUESITORY : Norm oriented OUTSIDE "geometric matter"
Initialize a Surface Transition with the local description of a straight line.
"""
@overload
def Reset(self,Tgt : OCP.gp.gp_Dir,Norm : OCP.gp.gp_Dir) -> None: ...
def StateAfter(self) -> OCP.TopAbs.TopAbs_State:
"""
Returns the state of the reference surface after interference, this is the position relative to the surface of a point very close to the intersection on the positive side of the tangent.
"""
def StateBefore(self) -> OCP.TopAbs.TopAbs_State:
"""
Returns the state of the reference surface before the interference, this is the position relative to the surface of a point very close to the intersection on the negative side of the tangent.
"""
def __init__(self) -> None: ...
pass
|