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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
import OCP.GeomLProp
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.Geom
import OCP.gp
import OCP.GeomAbs
__all__ = [
"GeomLProp",
"GeomLProp_CLProps",
"GeomLProp_CurveTool",
"GeomLProp_SLProps",
"GeomLProp_SurfaceTool"
]
class GeomLProp():
"""
These global functions compute the degree of continuity of a 3D curve built by concatenation of two other curves (or portions of curves) at their junction point.
"""
@staticmethod
@overload
def Continuity_s(C1 : OCP.Geom.Geom_Curve,C2 : OCP.Geom.Geom_Curve,u1 : float,u2 : float,r1 : bool,r2 : bool,tl : float,ta : float) -> OCP.GeomAbs.GeomAbs_Shape:
"""
Computes the regularity at the junction between C1 and C2. The booleans r1 and r2 are true if the curves must be taken reversed. The point u1 on C1 and the point u2 on C2 must be confused. tl and ta are the linear and angular tolerance used two compare the derivative.
The same as preceding but using the standard tolerances from package Precision.
"""
@staticmethod
@overload
def Continuity_s(C1 : OCP.Geom.Geom_Curve,C2 : OCP.Geom.Geom_Curve,u1 : float,u2 : float,r1 : bool,r2 : bool) -> OCP.GeomAbs.GeomAbs_Shape: ...
def __init__(self) -> None: ...
pass
class GeomLProp_CLProps():
"""
None
"""
def CentreOfCurvature(self,P : OCP.gp.gp_Pnt) -> None:
"""
Returns the centre of curvature <P>.
"""
def Curvature(self) -> float:
"""
Returns the curvature.
"""
def D1(self) -> OCP.gp.gp_Vec:
"""
Returns the first derivative. The derivative is computed if it has not been yet.
"""
def D2(self) -> OCP.gp.gp_Vec:
"""
Returns the second derivative. The derivative is computed if it has not been yet.
"""
def D3(self) -> OCP.gp.gp_Vec:
"""
Returns the third derivative. The derivative is computed if it has not been yet.
"""
def IsTangentDefined(self) -> bool:
"""
Returns True if the tangent is defined. For example, the tangent is not defined if the three first derivatives are all null.
"""
def Normal(self,N : OCP.gp.gp_Dir) -> None:
"""
Returns the normal direction <N>.
"""
def SetCurve(self,C : OCP.Geom.Geom_Curve) -> None:
"""
Initializes the local properties of the curve for the new curve.
"""
def SetParameter(self,U : float) -> None:
"""
Initializes the local properties of the curve for the parameter value <U>.
"""
def Tangent(self,D : OCP.gp.gp_Dir) -> None:
"""
output the tangent direction <D>
"""
def Value(self) -> OCP.gp.gp_Pnt:
"""
Returns the Point.
"""
@overload
def __init__(self,C : OCP.Geom.Geom_Curve,N : int,Resolution : float) -> None: ...
@overload
def __init__(self,C : OCP.Geom.Geom_Curve,U : float,N : int,Resolution : float) -> None: ...
@overload
def __init__(self,N : int,Resolution : float) -> None: ...
pass
class GeomLProp_CurveTool():
"""
None
"""
@staticmethod
def Continuity_s(C : OCP.Geom.Geom_Curve) -> int:
"""
returns the order of continuity of the curve <C>. returns 1 : first derivative only is computable returns 2 : first and second derivative only are computable. returns 3 : first, second and third are computable.
"""
@staticmethod
def D1_s(C : OCP.Geom.Geom_Curve,U : float,P : OCP.gp.gp_Pnt,V1 : OCP.gp.gp_Vec) -> None:
"""
Computes the point <P> and first derivative <V1> of parameter <U> on the curve <C>.
"""
@staticmethod
def D2_s(C : OCP.Geom.Geom_Curve,U : float,P : OCP.gp.gp_Pnt,V1 : OCP.gp.gp_Vec,V2 : OCP.gp.gp_Vec) -> None:
"""
Computes the point <P>, the first derivative <V1> and second derivative <V2> of parameter <U> on the curve <C>.
"""
@staticmethod
def D3_s(C : OCP.Geom.Geom_Curve,U : float,P : OCP.gp.gp_Pnt,V1 : OCP.gp.gp_Vec,V2 : OCP.gp.gp_Vec,V3 : OCP.gp.gp_Vec) -> None:
"""
Computes the point <P>, the first derivative <V1>, the second derivative <V2> and third derivative <V3> of parameter <U> on the curve <C>.
"""
@staticmethod
def FirstParameter_s(C : OCP.Geom.Geom_Curve) -> float:
"""
returns the first parameter bound of the curve.
"""
@staticmethod
def LastParameter_s(C : OCP.Geom.Geom_Curve) -> float:
"""
returns the last parameter bound of the curve. FirstParameter must be less than LastParamenter.
"""
@staticmethod
def Value_s(C : OCP.Geom.Geom_Curve,U : float,P : OCP.gp.gp_Pnt) -> None:
"""
Computes the point <P> of parameter <U> on the curve <C>.
"""
def __init__(self) -> None: ...
pass
class GeomLProp_SLProps():
"""
None
"""
def CurvatureDirections(self,MaxD : OCP.gp.gp_Dir,MinD : OCP.gp.gp_Dir) -> None:
"""
Returns the direction of the maximum and minimum curvature <MaxD> and <MinD>
"""
def D1U(self) -> OCP.gp.gp_Vec:
"""
Returns the first U derivative. The derivative is computed if it has not been yet.
"""
def D1V(self) -> OCP.gp.gp_Vec:
"""
Returns the first V derivative. The derivative is computed if it has not been yet.
"""
def D2U(self) -> OCP.gp.gp_Vec:
"""
Returns the second U derivatives The derivative is computed if it has not been yet.
"""
def D2V(self) -> OCP.gp.gp_Vec:
"""
Returns the second V derivative. The derivative is computed if it has not been yet.
"""
def DUV(self) -> OCP.gp.gp_Vec:
"""
Returns the second UV cross-derivative. The derivative is computed if it has not been yet.
"""
def GaussianCurvature(self) -> float:
"""
Returns the Gaussian curvature
"""
def IsCurvatureDefined(self) -> bool:
"""
returns True if the curvature is defined.
"""
def IsNormalDefined(self) -> bool:
"""
Tells if the normal is defined.
"""
def IsTangentUDefined(self) -> bool:
"""
returns True if the U tangent is defined. For example, the tangent is not defined if the two first U derivatives are null.
"""
def IsTangentVDefined(self) -> bool:
"""
returns if the V tangent is defined. For example, the tangent is not defined if the two first V derivatives are null.
"""
def IsUmbilic(self) -> bool:
"""
returns True if the point is umbilic (i.e. if the curvature is constant).
"""
def MaxCurvature(self) -> float:
"""
Returns the maximum curvature
"""
def MeanCurvature(self) -> float:
"""
Returns the mean curvature.
"""
def MinCurvature(self) -> float:
"""
Returns the minimum curvature
"""
def Normal(self) -> OCP.gp.gp_Dir:
"""
Returns the normal direction.
"""
def SetParameters(self,U : float,V : float) -> None:
"""
Initializes the local properties of the surface S for the new parameter values (<U>, <V>).
"""
def SetSurface(self,S : OCP.Geom.Geom_Surface) -> None:
"""
Initializes the local properties of the surface S for the new surface.
"""
def TangentU(self,D : OCP.gp.gp_Dir) -> None:
"""
Returns the tangent direction <D> on the iso-V.
"""
def TangentV(self,D : OCP.gp.gp_Dir) -> None:
"""
Returns the tangent direction <D> on the iso-V.
"""
def Value(self) -> OCP.gp.gp_Pnt:
"""
Returns the point.
"""
@overload
def __init__(self,S : OCP.Geom.Geom_Surface,U : float,V : float,N : int,Resolution : float) -> None: ...
@overload
def __init__(self,S : OCP.Geom.Geom_Surface,N : int,Resolution : float) -> None: ...
@overload
def __init__(self,N : int,Resolution : float) -> None: ...
pass
class GeomLProp_SurfaceTool():
"""
None
"""
@staticmethod
def Bounds_s(S : OCP.Geom.Geom_Surface) -> tuple[float, float, float, float]:
"""
returns the bounds of the Surface.
"""
@staticmethod
def Continuity_s(S : OCP.Geom.Geom_Surface) -> int:
"""
returns the order of continuity of the Surface <S>. returns 1 : first derivative only is computable returns 2 : first and second derivative only are computable.
"""
@staticmethod
def D1_s(S : OCP.Geom.Geom_Surface,U : float,V : float,P : OCP.gp.gp_Pnt,D1U : OCP.gp.gp_Vec,D1V : OCP.gp.gp_Vec) -> None:
"""
Computes the point <P> and first derivative <D1*> of parameter <U> and <V> on the Surface <S>.
"""
@staticmethod
def D2_s(S : OCP.Geom.Geom_Surface,U : float,V : float,P : OCP.gp.gp_Pnt,D1U : OCP.gp.gp_Vec,D1V : OCP.gp.gp_Vec,D2U : OCP.gp.gp_Vec,D2V : OCP.gp.gp_Vec,DUV : OCP.gp.gp_Vec) -> None:
"""
Computes the point <P>, the first derivative <D1*> and second derivative <D2*> of parameter <U> and <V> on the Surface <S>.
"""
@staticmethod
def DN_s(S : OCP.Geom.Geom_Surface,U : float,V : float,IU : int,IV : int) -> OCP.gp.gp_Vec:
"""
None
"""
@staticmethod
def Value_s(S : OCP.Geom.Geom_Surface,U : float,V : float,P : OCP.gp.gp_Pnt) -> None:
"""
Computes the point <P> of parameter <U> and <V> on the Surface <S>.
"""
def __init__(self) -> None: ...
pass
|