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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
|
import OCP.FilletSurf
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.TopTools
import OCP.ChFiDS
import OCP.GeomAbs
import OCP.Law
import OCP.Geom
import OCP.TopOpeBRepBuild
import OCP.gp
import OCP.Adaptor3d
import OCP.TopoDS
import OCP.Geom2d
import OCP.ChFi3d
__all__ = [
"FilletSurf_Builder",
"FilletSurf_ErrorTypeStatus",
"FilletSurf_InternalBuilder",
"FilletSurf_StatusDone",
"FilletSurf_StatusType",
"FilletSurf_EdgeNotG1",
"FilletSurf_EdgeNotOnShape",
"FilletSurf_EmptyList",
"FilletSurf_FacesNotG1",
"FilletSurf_IsNotOk",
"FilletSurf_IsOk",
"FilletSurf_IsPartial",
"FilletSurf_NoExtremityOnEdge",
"FilletSurf_NotSharpEdge",
"FilletSurf_OneExtremityOnEdge",
"FilletSurf_PbFilletCompute",
"FilletSurf_TwoExtremityOnEdge"
]
class FilletSurf_Builder():
"""
API giving the following geometric information about fillets list of corresponding NUBS surfaces for each surface: the 2 support faces on each face: the 3d curve and the corresponding 2d curve the 2d curves on the fillet status of start and end section of the fillet first and last parameter on edge of the fillet.
"""
def CurveOnFace1(self,Index : int) -> OCP.Geom.Geom_Curve:
"""
gives the 3d curve of SurfaceFillet(Index) on SupportFace1(Index)
"""
def CurveOnFace2(self,Index : int) -> OCP.Geom.Geom_Curve:
"""
gives the 3d curve of SurfaceFillet(Index) on SupportFace2(Index)
"""
def EndSectionStatus(self) -> FilletSurf_StatusType:
"""
None
"""
def FirstParameter(self) -> float:
"""
gives the parameter of the fillet on the first edge.
"""
def IsDone(self) -> FilletSurf_StatusDone:
"""
gives the status about the computation of the fillet returns: IsOK :no problem during the computation IsNotOk: no result is produced IsPartial: the result is partial
"""
def LastParameter(self) -> float:
"""
gives the parameter of the fillet on the last edge
"""
def NbSection(self,IndexSurf : int) -> int:
"""
None
"""
def NbSurface(self) -> int:
"""
gives the number of NUBS surfaces of the Fillet.
"""
def PCurve1OnFillet(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurveOnFace1(Index) on the Fillet
"""
def PCurve2OnFillet(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurveOnSup2(Index) on the fillet
"""
def PCurveOnFace1(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurvOnSup1(Index) on the support face
"""
def PCurveOnFace2(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurveOnSup2(Index) on the support face
"""
def Perform(self) -> None:
"""
---Purpose computation of the fillet (list of NUBS)
"""
def Section(self,IndexSurf : int,IndexSec : int,Circ : OCP.Geom.Geom_TrimmedCurve) -> Any:
"""
None
"""
def Simulate(self) -> None:
"""
None
"""
def StartSectionStatus(self) -> FilletSurf_StatusType:
"""
None
"""
def StatusError(self) -> FilletSurf_ErrorTypeStatus:
"""
gives information about error status if IsDone=IsNotOk returns EdgeNotG1: the edges are not G1 FacesNotG1 : two connected faces on a same support are not G1 EdgeNotOnShape: the edge is not on shape NotSharpEdge: the edge is not sharp PbFilletCompute: problem during the computation of the fillet
"""
def SupportFace1(self,Index : int) -> OCP.TopoDS.TopoDS_Face:
"""
gives the first support face relative to SurfaceFillet(Index);
"""
def SupportFace2(self,Index : int) -> OCP.TopoDS.TopoDS_Face:
"""
gives the second support face relative to SurfaceFillet(Index);
"""
def SurfaceFillet(self,Index : int) -> OCP.Geom.Geom_Surface:
"""
gives the NUBS surface of index Index.
"""
def TolApp3d(self,Index : int) -> float:
"""
gives the 3d tolerance reached during approximation of surface of index Index
"""
def __init__(self,S : OCP.TopoDS.TopoDS_Shape,E : OCP.TopTools.TopTools_ListOfShape,R : float,Ta : float=0.01,Tapp3d : float=0.0001,Tapp2d : float=1e-05) -> None: ...
pass
class FilletSurf_ErrorTypeStatus():
"""
None
Members:
FilletSurf_EmptyList
FilletSurf_EdgeNotG1
FilletSurf_FacesNotG1
FilletSurf_EdgeNotOnShape
FilletSurf_NotSharpEdge
FilletSurf_PbFilletCompute
"""
def __eq__(self,other : object) -> bool: ...
def __getstate__(self) -> int: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __init__(self,value : int) -> None: ...
def __int__(self) -> int: ...
def __ne__(self,other : object) -> bool: ...
def __repr__(self) -> str: ...
def __setstate__(self,state : int) -> None: ...
def __str__(self) -> str: ...
@property
def name(self) -> None:
"""
:type: None
"""
@property
def value(self) -> int:
"""
:type: int
"""
FilletSurf_EdgeNotG1: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotG1: 1>
FilletSurf_EdgeNotOnShape: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotOnShape: 3>
FilletSurf_EmptyList: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_EmptyList: 0>
FilletSurf_FacesNotG1: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_FacesNotG1: 2>
FilletSurf_NotSharpEdge: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_NotSharpEdge: 4>
FilletSurf_PbFilletCompute: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_PbFilletCompute: 5>
__entries: dict # value = {'FilletSurf_EmptyList': (<FilletSurf_ErrorTypeStatus.FilletSurf_EmptyList: 0>, None), 'FilletSurf_EdgeNotG1': (<FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotG1: 1>, None), 'FilletSurf_FacesNotG1': (<FilletSurf_ErrorTypeStatus.FilletSurf_FacesNotG1: 2>, None), 'FilletSurf_EdgeNotOnShape': (<FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotOnShape: 3>, None), 'FilletSurf_NotSharpEdge': (<FilletSurf_ErrorTypeStatus.FilletSurf_NotSharpEdge: 4>, None), 'FilletSurf_PbFilletCompute': (<FilletSurf_ErrorTypeStatus.FilletSurf_PbFilletCompute: 5>, None)}
__members__: dict # value = {'FilletSurf_EmptyList': <FilletSurf_ErrorTypeStatus.FilletSurf_EmptyList: 0>, 'FilletSurf_EdgeNotG1': <FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotG1: 1>, 'FilletSurf_FacesNotG1': <FilletSurf_ErrorTypeStatus.FilletSurf_FacesNotG1: 2>, 'FilletSurf_EdgeNotOnShape': <FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotOnShape: 3>, 'FilletSurf_NotSharpEdge': <FilletSurf_ErrorTypeStatus.FilletSurf_NotSharpEdge: 4>, 'FilletSurf_PbFilletCompute': <FilletSurf_ErrorTypeStatus.FilletSurf_PbFilletCompute: 5>}
pass
class FilletSurf_InternalBuilder(OCP.ChFi3d.ChFi3d_FilBuilder, OCP.ChFi3d.ChFi3d_Builder):
"""
This class is private. It is used by the class Builder from FilletSurf. It computes geometric information about fillets.
"""
def Abscissa(self,IC : int,V : OCP.TopoDS.TopoDS_Vertex) -> float:
"""
returns the abscissa of the vertex V on the contour of index IC.
"""
def Add(self,E : OCP.TopTools.TopTools_ListOfShape,R : float) -> int:
"""
Initializes the contour with a list of Edges 0 : no problem 1 : empty list 2 : the edges are not G1 3 : two connected faces on a same support are not G1 4 : the edge is not on shape 5 : NotSharpEdge: the edge is not sharp
"""
def BadShape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
if (HasResult()) returns partial result if (!HasResult())
"""
def Builder(self) -> OCP.TopOpeBRepBuild.TopOpeBRepBuild_HBuilder:
"""
Returns the Builder of topologic operations.
"""
def Closed(self,IC : int) -> bool:
"""
returns true if the contour of index IC is closed
"""
def ClosedAndTangent(self,IC : int) -> bool:
"""
returns true if the contour of index IC is closed an tangent.
"""
def Compute(self) -> None:
"""
general calculation of geometry on all edges, topologic reconstruction.
"""
def ComputedSurface(self,IC : int,IS : int) -> OCP.Geom.Geom_Surface:
"""
Returns the IS'th surface calculated on the contour IC.
"""
@overload
def Contains(self,E : OCP.TopoDS.TopoDS_Edge,IndexInSpine : int) -> int:
"""
gives the number of the contour containing E or 0 if E does not belong to any contour.
gives the number of the contour containing E or 0 if E does not belong to any contour. Sets in IndexInSpine the index of E in the contour if it's found
"""
@overload
def Contains(self,E : OCP.TopoDS.TopoDS_Edge) -> int: ...
def CurveOnFace1(self,Index : int) -> OCP.Geom.Geom_Curve:
"""
gives the 3d curve of SurfaceFillet(Index) on SupportFace1(Index)
"""
def CurveOnFace2(self,Index : int) -> OCP.Geom.Geom_Curve:
"""
gives the 3d curve of SurfaceFillet(Index) on SupportFace2(Index)
"""
def Done(self) -> bool:
"""
None
"""
def EndSectionStatus(self) -> FilletSurf_StatusType:
"""
None
"""
def FaultyContour(self,I : int) -> int:
"""
Returns the number of I'th contour on which the calculation has failed.
"""
def FaultyVertex(self,IV : int) -> OCP.TopoDS.TopoDS_Vertex:
"""
Returns the IV'th vertex on which the calculation has failed.
"""
def FirstParameter(self) -> float:
"""
gives the parameter of the fillet on the first edge.
"""
def FirstVertex(self,IC : int) -> OCP.TopoDS.TopoDS_Vertex:
"""
returns the First vertex V of the contour of index IC.
"""
def Generated(self,EouV : OCP.TopoDS.TopoDS_Shape) -> OCP.TopTools.TopTools_ListOfShape:
"""
Advanced function for the history
"""
def GetBounds(self,IC : int,E : OCP.TopoDS.TopoDS_Edge,First : float,Last : float) -> bool:
"""
Returns in First and Last les extremities of the part of variable vector framing E, returns False if E is flagged as edge constant.
"""
def GetFilletShape(self) -> OCP.ChFi3d.ChFi3d_FilletShape:
"""
Returns the type of fillet surface.
"""
def GetLaw(self,IC : int,E : OCP.TopoDS.TopoDS_Edge) -> OCP.Law.Law_Function:
"""
Returns the rule of elementary evolution of the part to variable vector framing E, returns a rule zero if E is flagged as edge constant.
"""
def HasResult(self) -> bool:
"""
returns True if a partial result has been calculated
"""
@overload
def IsConstant(self,IC : int,E : OCP.TopoDS.TopoDS_Edge) -> bool:
"""
Returns true the contour is flagged as edge constant.
Returns true E is flagged as edge constant.
"""
@overload
def IsConstant(self,IC : int) -> bool: ...
def IsDone(self) -> bool:
"""
returns True if the computation is success
"""
def LastParameter(self) -> float:
"""
gives the parameter of the fillet on the last edge
"""
def LastVertex(self,IC : int) -> OCP.TopoDS.TopoDS_Vertex:
"""
returns the Last vertex V of the contour of index IC.
"""
def Length(self,IC : int) -> float:
"""
returns the length of the contour of index IC.
"""
def NbComputedSurfaces(self,IC : int) -> int:
"""
Returns the number of surfaces calculated on the contour IC.
"""
def NbElements(self) -> int:
"""
gives the number of disjoint contours on which the fillets are calculated
"""
def NbFaultyContours(self) -> int:
"""
Returns the number of contours on which the calculation has failed.
"""
def NbFaultyVertices(self) -> int:
"""
Returns the number of vertices on which the calculation has failed.
"""
def NbSection(self,IndexSurf : int) -> int:
"""
None
"""
def NbSurf(self,IC : int) -> int:
"""
None
"""
def NbSurface(self) -> int:
"""
gives the number of NUBS surfaces of the Fillet.
"""
def PCurve1OnFillet(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurveOnFace1(Index) on the Fillet
"""
def PCurve2OnFillet(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurveOnSup2(Index) on the fillet
"""
def PCurveOnFace1(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurvOnSup1(Index) on the support face
"""
def PCurveOnFace2(self,Index : int) -> OCP.Geom2d.Geom2d_Curve:
"""
gives the PCurve associated to CurveOnSup2(Index) on the support face
"""
def Perform(self) -> None:
"""
None
"""
def PerformTwoCornerbyInter(self,Index : int) -> bool:
"""
None
"""
@overload
def Radius(self,IC : int) -> float:
"""
Returns the vector if the contour is flagged as edge constant.
Returns the vector if E is flagged as edge constant.
"""
@overload
def Radius(self,IC : int,E : OCP.TopoDS.TopoDS_Edge) -> float: ...
def RelativeAbscissa(self,IC : int,V : OCP.TopoDS.TopoDS_Vertex) -> float:
"""
returns the relative abscissa([0.,1.]) of the vertex V on the contour of index IC.
"""
def Remove(self,E : OCP.TopoDS.TopoDS_Edge) -> None:
"""
extracts from the list the contour containing edge E.
"""
def Reset(self) -> None:
"""
Reset all results of compute and returns the algorithm in the state of the last acquisition to enable modification of contours or areas.
"""
def ResetContour(self,IC : int) -> None:
"""
Reset all vectors of contour IC.
"""
def Sect(self,IC : int,IS : int) -> OCP.ChFiDS.ChFiDS_SecHArray1:
"""
None
"""
def Section(self,IndexSurf : int,IndexSec : int,Circ : OCP.Geom.Geom_TrimmedCurve) -> Any:
"""
None
"""
def SetContinuity(self,InternalContinuity : OCP.GeomAbs.GeomAbs_Shape,AngularTolerance : float) -> None:
"""
None
"""
def SetFilletShape(self,FShape : OCP.ChFi3d.ChFi3d_FilletShape) -> None:
"""
Sets the type of fillet surface.
"""
def SetLaw(self,IC : int,E : OCP.TopoDS.TopoDS_Edge,L : OCP.Law.Law_Function) -> None:
"""
Sets the rule of elementary evolution of the part to variable vector framing E.
"""
def SetParams(self,Tang : float,Tesp : float,T2d : float,TApp3d : float,TolApp2d : float,Fleche : float) -> None:
"""
None
"""
@overload
def SetRadius(self,Radius : float,IC : int,V : OCP.TopoDS.TopoDS_Vertex) -> None:
"""
Set the radius of the contour of index IC.
Set a constant on edge E of the contour of index IC. Since then E is flagged as constant.
Set a vector on vertex V of the contour of index IC.
Set a vertex on the point of parametre U in the edge IinC of the contour of index IC
"""
@overload
def SetRadius(self,Radius : float,IC : int,E : OCP.TopoDS.TopoDS_Edge) -> None: ...
@overload
def SetRadius(self,UandR : OCP.gp.gp_XY,IC : int,IinC : int) -> None: ...
@overload
def SetRadius(self,C : OCP.Law.Law_Function,IC : int,IinC : int) -> None: ...
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
if (Isdone()) makes the result. if (!Isdone())
"""
def Simulate(self) -> None:
"""
None
"""
def SplitKPart(self,Data : OCP.ChFiDS.ChFiDS_SurfData,SetData : OCP.ChFiDS.ChFiDS_SequenceOfSurfData,Spine : OCP.ChFiDS.ChFiDS_Spine,Iedge : int,S1 : OCP.Adaptor3d.Adaptor3d_Surface,I1 : OCP.Adaptor3d.Adaptor3d_TopolTool,S2 : OCP.Adaptor3d.Adaptor3d_Surface,I2 : OCP.Adaptor3d.Adaptor3d_TopolTool,Intf : bool,Intl : bool) -> bool:
"""
Method, implemented in the inheritants, calculates the elements of construction of the surface (fillet or chamfer).
"""
def StartSectionStatus(self) -> FilletSurf_StatusType:
"""
None
"""
def StripeStatus(self,IC : int) -> OCP.ChFiDS.ChFiDS_ErrorStatus:
"""
for the stripe IC ,indication on the cause of failure WalkingFailure,TwistedSurface,Error, Ok
"""
def SupportFace1(self,Index : int) -> OCP.TopoDS.TopoDS_Face:
"""
gives the first support face relative to SurfaceFillet(Index);
"""
def SupportFace2(self,Index : int) -> OCP.TopoDS.TopoDS_Face:
"""
gives the second support face relative to SurfaceFillet(Index);
"""
def SurfaceFillet(self,Index : int) -> OCP.Geom.Geom_Surface:
"""
gives the NUBS surface of index Index.
"""
def TolApp3d(self,Index : int) -> float:
"""
gives the 3d tolerance reached during approximation of the surface of index Index
"""
@overload
def UnSet(self,IC : int,E : OCP.TopoDS.TopoDS_Edge) -> None:
"""
Extracts the flag constant and the vector of edge E.
Extracts the vector of the vertex V.
"""
@overload
def UnSet(self,IC : int,V : OCP.TopoDS.TopoDS_Vertex) -> None: ...
def Value(self,I : int) -> OCP.ChFiDS.ChFiDS_Spine:
"""
gives the n'th set of edges (contour) if I >NbElements()
"""
def __init__(self,S : OCP.TopoDS.TopoDS_Shape,FShape : OCP.ChFi3d.ChFi3d_FilletShape=ChFi3d_FilletShape.ChFi3d_Polynomial,Ta : float=0.01,Tapp3d : float=0.0001,Tapp2d : float=1e-05) -> None: ...
pass
class FilletSurf_StatusDone():
"""
None
Members:
FilletSurf_IsOk
FilletSurf_IsNotOk
FilletSurf_IsPartial
"""
def __eq__(self,other : object) -> bool: ...
def __getstate__(self) -> int: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __init__(self,value : int) -> None: ...
def __int__(self) -> int: ...
def __ne__(self,other : object) -> bool: ...
def __repr__(self) -> str: ...
def __setstate__(self,state : int) -> None: ...
def __str__(self) -> str: ...
@property
def name(self) -> None:
"""
:type: None
"""
@property
def value(self) -> int:
"""
:type: int
"""
FilletSurf_IsNotOk: OCP.FilletSurf.FilletSurf_StatusDone # value = <FilletSurf_StatusDone.FilletSurf_IsNotOk: 1>
FilletSurf_IsOk: OCP.FilletSurf.FilletSurf_StatusDone # value = <FilletSurf_StatusDone.FilletSurf_IsOk: 0>
FilletSurf_IsPartial: OCP.FilletSurf.FilletSurf_StatusDone # value = <FilletSurf_StatusDone.FilletSurf_IsPartial: 2>
__entries: dict # value = {'FilletSurf_IsOk': (<FilletSurf_StatusDone.FilletSurf_IsOk: 0>, None), 'FilletSurf_IsNotOk': (<FilletSurf_StatusDone.FilletSurf_IsNotOk: 1>, None), 'FilletSurf_IsPartial': (<FilletSurf_StatusDone.FilletSurf_IsPartial: 2>, None)}
__members__: dict # value = {'FilletSurf_IsOk': <FilletSurf_StatusDone.FilletSurf_IsOk: 0>, 'FilletSurf_IsNotOk': <FilletSurf_StatusDone.FilletSurf_IsNotOk: 1>, 'FilletSurf_IsPartial': <FilletSurf_StatusDone.FilletSurf_IsPartial: 2>}
pass
class FilletSurf_StatusType():
"""
None
Members:
FilletSurf_TwoExtremityOnEdge
FilletSurf_OneExtremityOnEdge
FilletSurf_NoExtremityOnEdge
"""
def __eq__(self,other : object) -> bool: ...
def __getstate__(self) -> int: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __init__(self,value : int) -> None: ...
def __int__(self) -> int: ...
def __ne__(self,other : object) -> bool: ...
def __repr__(self) -> str: ...
def __setstate__(self,state : int) -> None: ...
def __str__(self) -> str: ...
@property
def name(self) -> None:
"""
:type: None
"""
@property
def value(self) -> int:
"""
:type: int
"""
FilletSurf_NoExtremityOnEdge: OCP.FilletSurf.FilletSurf_StatusType # value = <FilletSurf_StatusType.FilletSurf_NoExtremityOnEdge: 2>
FilletSurf_OneExtremityOnEdge: OCP.FilletSurf.FilletSurf_StatusType # value = <FilletSurf_StatusType.FilletSurf_OneExtremityOnEdge: 1>
FilletSurf_TwoExtremityOnEdge: OCP.FilletSurf.FilletSurf_StatusType # value = <FilletSurf_StatusType.FilletSurf_TwoExtremityOnEdge: 0>
__entries: dict # value = {'FilletSurf_TwoExtremityOnEdge': (<FilletSurf_StatusType.FilletSurf_TwoExtremityOnEdge: 0>, None), 'FilletSurf_OneExtremityOnEdge': (<FilletSurf_StatusType.FilletSurf_OneExtremityOnEdge: 1>, None), 'FilletSurf_NoExtremityOnEdge': (<FilletSurf_StatusType.FilletSurf_NoExtremityOnEdge: 2>, None)}
__members__: dict # value = {'FilletSurf_TwoExtremityOnEdge': <FilletSurf_StatusType.FilletSurf_TwoExtremityOnEdge: 0>, 'FilletSurf_OneExtremityOnEdge': <FilletSurf_StatusType.FilletSurf_OneExtremityOnEdge: 1>, 'FilletSurf_NoExtremityOnEdge': <FilletSurf_StatusType.FilletSurf_NoExtremityOnEdge: 2>}
pass
FilletSurf_EdgeNotG1: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotG1: 1>
FilletSurf_EdgeNotOnShape: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_EdgeNotOnShape: 3>
FilletSurf_EmptyList: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_EmptyList: 0>
FilletSurf_FacesNotG1: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_FacesNotG1: 2>
FilletSurf_IsNotOk: OCP.FilletSurf.FilletSurf_StatusDone # value = <FilletSurf_StatusDone.FilletSurf_IsNotOk: 1>
FilletSurf_IsOk: OCP.FilletSurf.FilletSurf_StatusDone # value = <FilletSurf_StatusDone.FilletSurf_IsOk: 0>
FilletSurf_IsPartial: OCP.FilletSurf.FilletSurf_StatusDone # value = <FilletSurf_StatusDone.FilletSurf_IsPartial: 2>
FilletSurf_NoExtremityOnEdge: OCP.FilletSurf.FilletSurf_StatusType # value = <FilletSurf_StatusType.FilletSurf_NoExtremityOnEdge: 2>
FilletSurf_NotSharpEdge: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_NotSharpEdge: 4>
FilletSurf_OneExtremityOnEdge: OCP.FilletSurf.FilletSurf_StatusType # value = <FilletSurf_StatusType.FilletSurf_OneExtremityOnEdge: 1>
FilletSurf_PbFilletCompute: OCP.FilletSurf.FilletSurf_ErrorTypeStatus # value = <FilletSurf_ErrorTypeStatus.FilletSurf_PbFilletCompute: 5>
FilletSurf_TwoExtremityOnEdge: OCP.FilletSurf.FilletSurf_StatusType # value = <FilletSurf_StatusType.FilletSurf_TwoExtremityOnEdge: 0>
|