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
|
import OCP.ShapeProcess
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.Resource
import OCP.TopTools
import OCP.Message
import OCP.BRepTools
import OCP.TopoDS
import OCP.Standard
import OCP.TopAbs
import OCP.ShapeExtend
import OCP.ShapeBuild
import OCP.TCollection
import OCP.GeomAbs
__all__ = [
"ShapeProcess",
"ShapeProcess_Context",
"ShapeProcess_OperLibrary",
"ShapeProcess_Operator",
"ShapeProcess_ShapeContext",
"ShapeProcess_UOperator"
]
class ShapeProcess():
"""
Shape Processing module allows to define and apply general Shape Processing as a customizable sequence of Shape Healing operators. The customization is implemented via user-editable resource file which defines sequence of operators to be executed and their parameters.
"""
@staticmethod
def FindOperator_s(name : str,op : ShapeProcess_Operator) -> bool:
"""
Finds operator by its name
"""
@staticmethod
def Perform_s(context : ShapeProcess_Context,seq : str,theProgress : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> bool:
"""
Performs a specified sequence of operators on Context Resource file and other data should be already loaded to Context (including description of sequence seq)
"""
@staticmethod
def RegisterOperator_s(name : str,op : ShapeProcess_Operator) -> bool:
"""
Registers operator to make it visible for Performer
"""
def __init__(self) -> None: ...
pass
class ShapeProcess_Context(OCP.Standard.Standard_Transient):
"""
Provides convenient interface to resource file Allows to load resource file and get values of attributes starting from some scope, for example if scope is defined as "ToV4" and requested parameter is "exec.op", value of "ToV4.exec.op" parameter from the resource file will be returnedProvides convenient interface to resource file Allows to load resource file and get values of attributes starting from some scope, for example if scope is defined as "ToV4" and requested parameter is "exec.op", value of "ToV4.exec.op" parameter from the resource file will be returnedProvides convenient interface to resource file Allows to load resource file and get values of attributes starting from some scope, for example if scope is defined as "ToV4" and requested parameter is "exec.op", value of "ToV4.exec.op" parameter from the resource file will be returned
"""
def BooleanVal(self,param : str,def_ : bool) -> bool:
"""
None
"""
def DecrementRefCounter(self) -> int:
"""
Decrements the reference counter of this object; returns the decremented value
"""
def Delete(self) -> None:
"""
Memory deallocator for transient classes
"""
def DynamicType(self) -> OCP.Standard.Standard_Type:
"""
None
"""
def GetBoolean(self,param : str,val : bool) -> bool:
"""
None
"""
def GetInteger(self,param : str,val : int) -> bool:
"""
None
"""
def GetReal(self,param : str,val : float) -> bool:
"""
None
"""
def GetRefCount(self) -> int:
"""
Get the reference counter of this object
"""
def GetString(self,param : str,val : OCP.TCollection.TCollection_AsciiString) -> bool:
"""
Get value of parameter as being of specific type Returns False if parameter is not defined or has a wrong type
"""
def IncrementRefCounter(self) -> None:
"""
Increments the reference counter of this object
"""
def Init(self,file : str,scope : str='') -> bool:
"""
Initialises a tool by loading resource file and (if specified) sets starting scope Returns False if resource file not found
"""
def IntegerVal(self,param : str,def_ : int) -> int:
"""
None
"""
@overload
def IsInstance(self,theType : OCP.Standard.Standard_Type) -> bool:
"""
Returns a true value if this is an instance of Type.
Returns a true value if this is an instance of TypeName.
"""
@overload
def IsInstance(self,theTypeName : str) -> bool: ...
@overload
def IsKind(self,theTypeName : str) -> bool:
"""
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
"""
@overload
def IsKind(self,theType : OCP.Standard.Standard_Type) -> bool: ...
def IsParamSet(self,param : str) -> bool:
"""
Returns True if parameter is defined in the resource file
"""
def LoadResourceManager(self,file : str) -> OCP.Resource.Resource_Manager:
"""
Loading Resource_Manager object if this object not equal internal static Resource_Manager object or internal static Resource_Manager object is null
"""
def Messenger(self) -> OCP.Message.Message_Messenger:
"""
Returns Messenger used for outputting messages.
"""
def RealVal(self,param : str,def_ : float) -> float:
"""
None
"""
def ResourceManager(self) -> OCP.Resource.Resource_Manager:
"""
Returns internal Resource_Manager object
"""
def SetMessenger(self,messenger : OCP.Message.Message_Messenger) -> None:
"""
Sets Messenger used for outputting messages.
"""
def SetScope(self,scope : str) -> None:
"""
Set a new (sub)scope
"""
def SetTraceLevel(self,tracelev : int) -> None:
"""
Sets trace level used for outputting messages - 0: no trace at all - 1: errors - 2: errors and warnings - 3: all messages Default is 1 : Errors traced
"""
def StringVal(self,param : str,def_ : str) -> str:
"""
Get value of parameter as being of specific type If parameter is not defined or does not have expected type, returns default value as specified
"""
def This(self) -> OCP.Standard.Standard_Transient:
"""
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
"""
def TraceLevel(self) -> int:
"""
Returns trace level used for outputting messages.
"""
def UnSetScope(self) -> None:
"""
Go out of current scope
"""
@overload
def __init__(self,file : str,scope : str='') -> None: ...
@overload
def __init__(self) -> None: ...
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
class ShapeProcess_OperLibrary():
"""
Provides a set of following operators
"""
@staticmethod
def ApplyModifier_s(S : OCP.TopoDS.TopoDS_Shape,context : ShapeProcess_ShapeContext,M : OCP.BRepTools.BRepTools_Modification,map : OCP.TopTools.TopTools_DataMapOfShapeShape,msg : OCP.ShapeExtend.ShapeExtend_MsgRegistrator=None,theMutableInput : bool=False) -> OCP.TopoDS.TopoDS_Shape:
"""
Applies BRepTools_Modification to a shape, taking into account sharing of components of compounds. if theMutableInput vat is set to true then input shape S can be modified during the modification process.
"""
@staticmethod
def Init_s() -> None:
"""
Registers all the operators
"""
def __init__(self) -> None: ...
pass
class ShapeProcess_Operator(OCP.Standard.Standard_Transient):
"""
Abstract Operator class providing a tool to perform an operation on ContextAbstract Operator class providing a tool to perform an operation on ContextAbstract Operator class providing a tool to perform an operation on Context
"""
def DecrementRefCounter(self) -> int:
"""
Decrements the reference counter of this object; returns the decremented value
"""
def Delete(self) -> None:
"""
Memory deallocator for transient classes
"""
def DynamicType(self) -> OCP.Standard.Standard_Type:
"""
None
"""
def GetRefCount(self) -> int:
"""
Get the reference counter of this object
"""
def IncrementRefCounter(self) -> None:
"""
Increments the reference counter of this object
"""
@overload
def IsInstance(self,theType : OCP.Standard.Standard_Type) -> bool:
"""
Returns a true value if this is an instance of Type.
Returns a true value if this is an instance of TypeName.
"""
@overload
def IsInstance(self,theTypeName : str) -> bool: ...
@overload
def IsKind(self,theTypeName : str) -> bool:
"""
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
"""
@overload
def IsKind(self,theType : OCP.Standard.Standard_Type) -> bool: ...
def Perform(self,context : ShapeProcess_Context,theProgress : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> bool:
"""
Performs operation and eventually records changes in the context
"""
def This(self) -> OCP.Standard.Standard_Transient:
"""
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
"""
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
class ShapeProcess_ShapeContext(ShapeProcess_Context, OCP.Standard.Standard_Transient):
"""
Extends Context to handle shapes Contains map of shape-shape, and messages attached to shapesExtends Context to handle shapes Contains map of shape-shape, and messages attached to shapesExtends Context to handle shapes Contains map of shape-shape, and messages attached to shapes
"""
def AddMessage(self,S : OCP.TopoDS.TopoDS_Shape,msg : OCP.Message.Message_Msg,gravity : OCP.Message.Message_Gravity=Message_Gravity.Message_Warning) -> None:
"""
Record a message for shape S Shape S should be one of subshapes of original shape (or whole one), but not one of intermediate shapes Records only if Message() is not Null
"""
def BooleanVal(self,param : str,def_ : bool) -> bool:
"""
None
"""
def ContinuityVal(self,param : str,def_ : OCP.GeomAbs.GeomAbs_Shape) -> OCP.GeomAbs.GeomAbs_Shape:
"""
Get value of parameter as being of the type GeomAbs_Shape If parameter is not defined or does not have expected type, returns default value as specified
"""
def DecrementRefCounter(self) -> int:
"""
Decrements the reference counter of this object; returns the decremented value
"""
def Delete(self) -> None:
"""
Memory deallocator for transient classes
"""
def DynamicType(self) -> OCP.Standard.Standard_Type:
"""
None
"""
def GetBoolean(self,param : str,val : bool) -> bool:
"""
None
"""
def GetContinuity(self,param : str,val : OCP.GeomAbs.GeomAbs_Shape) -> bool:
"""
Get value of parameter as being of the type GeomAbs_Shape Returns False if parameter is not defined or has a wrong type
"""
def GetDetalisation(self) -> OCP.TopAbs.TopAbs_ShapeEnum:
"""
Set and get value for detalisation level Only shapes of types from TopoDS_COMPOUND and until specified detalisation level will be recorded in maps To cancel mapping, use TopAbs_SHAPE To force full mapping, use TopAbs_VERTEX The default level is TopAbs_FACE
"""
def GetInteger(self,param : str,val : int) -> bool:
"""
None
"""
def GetReal(self,param : str,val : float) -> bool:
"""
None
"""
def GetRefCount(self) -> int:
"""
Get the reference counter of this object
"""
def GetString(self,param : str,val : OCP.TCollection.TCollection_AsciiString) -> bool:
"""
Get value of parameter as being of specific type Returns False if parameter is not defined or has a wrong type
"""
def IncrementRefCounter(self) -> None:
"""
Increments the reference counter of this object
"""
def Init(self,S : OCP.TopoDS.TopoDS_Shape) -> None:
"""
Initializes tool by a new shape and clears all results
"""
def IntegerVal(self,param : str,def_ : int) -> int:
"""
None
"""
@overload
def IsInstance(self,theType : OCP.Standard.Standard_Type) -> bool:
"""
Returns a true value if this is an instance of Type.
Returns a true value if this is an instance of TypeName.
"""
@overload
def IsInstance(self,theTypeName : str) -> bool: ...
@overload
def IsKind(self,theTypeName : str) -> bool:
"""
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
"""
@overload
def IsKind(self,theType : OCP.Standard.Standard_Type) -> bool: ...
def IsNonManifold(self) -> bool:
"""
Get NonManifold flag
"""
def IsParamSet(self,param : str) -> bool:
"""
Returns True if parameter is defined in the resource file
"""
def LoadResourceManager(self,file : str) -> OCP.Resource.Resource_Manager:
"""
Loading Resource_Manager object if this object not equal internal static Resource_Manager object or internal static Resource_Manager object is null
"""
def Map(self) -> OCP.TopTools.TopTools_DataMapOfShapeShape:
"""
Returns map of replacements shape -> shape This map is not recursive
"""
def Messages(self) -> OCP.ShapeExtend.ShapeExtend_MsgRegistrator:
"""
None
Returns messages recorded during shape processing It can be nullified before processing in order to avoid recording messages
"""
def Messenger(self) -> OCP.Message.Message_Messenger:
"""
Returns Messenger used for outputting messages.
"""
def PrintStatistics(self) -> None:
"""
Prints statistics on Shape Processing onto the current Messenger.
"""
def RealVal(self,param : str,def_ : float) -> float:
"""
None
"""
@overload
def RecordModification(self,repl : OCP.TopTools.TopTools_DataMapOfShapeShape,msg : OCP.ShapeExtend.ShapeExtend_MsgRegistrator=None) -> None:
"""
None
None
None
Records modifications and resets result accordingly NOTE: modification of resulting shape should be explicitly defined in the maps along with modifications of subshapes
"""
@overload
def RecordModification(self,sh : OCP.TopoDS.TopoDS_Shape,repl : OCP.BRepTools.BRepTools_Modifier,msg : OCP.ShapeExtend.ShapeExtend_MsgRegistrator=None) -> None: ...
@overload
def RecordModification(self,repl : OCP.ShapeBuild.ShapeBuild_ReShape,msg : OCP.ShapeExtend.ShapeExtend_MsgRegistrator) -> None: ...
@overload
def RecordModification(self,repl : OCP.ShapeBuild.ShapeBuild_ReShape) -> None: ...
def ResourceManager(self) -> OCP.Resource.Resource_Manager:
"""
Returns internal Resource_Manager object
"""
def Result(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns current result
"""
def SetDetalisation(self,level : OCP.TopAbs.TopAbs_ShapeEnum) -> None:
"""
None
"""
def SetMessenger(self,messenger : OCP.Message.Message_Messenger) -> None:
"""
Sets Messenger used for outputting messages.
"""
def SetNonManifold(self,theNonManifold : bool) -> None:
"""
Set NonManifold flag
"""
def SetResult(self,S : OCP.TopoDS.TopoDS_Shape) -> None:
"""
Sets a new result shape NOTE: this method should be used very carefully to keep consistency of modifications It is recommended to use RecordModification() methods with explicit definition of mapping from current result to a new one
"""
def SetScope(self,scope : str) -> None:
"""
Set a new (sub)scope
"""
def SetTraceLevel(self,tracelev : int) -> None:
"""
Sets trace level used for outputting messages - 0: no trace at all - 1: errors - 2: errors and warnings - 3: all messages Default is 1 : Errors traced
"""
def Shape(self) -> OCP.TopoDS.TopoDS_Shape:
"""
Returns shape being processed
"""
def StringVal(self,param : str,def_ : str) -> str:
"""
Get value of parameter as being of specific type If parameter is not defined or does not have expected type, returns default value as specified
"""
def This(self) -> OCP.Standard.Standard_Transient:
"""
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
"""
def TraceLevel(self) -> int:
"""
Returns trace level used for outputting messages.
"""
def UnSetScope(self) -> None:
"""
Go out of current scope
"""
@overload
def __init__(self,S : OCP.TopoDS.TopoDS_Shape,file : str,seq : str='') -> None: ...
@overload
def __init__(self,file : str,seq : str='') -> None: ...
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
class ShapeProcess_UOperator(ShapeProcess_Operator, OCP.Standard.Standard_Transient):
"""
Defines operator as container for static function OperFunc. This allows user to create new operators without creation of new classesDefines operator as container for static function OperFunc. This allows user to create new operators without creation of new classesDefines operator as container for static function OperFunc. This allows user to create new operators without creation of new classes
"""
def DecrementRefCounter(self) -> int:
"""
Decrements the reference counter of this object; returns the decremented value
"""
def Delete(self) -> None:
"""
Memory deallocator for transient classes
"""
def DynamicType(self) -> OCP.Standard.Standard_Type:
"""
None
"""
def GetRefCount(self) -> int:
"""
Get the reference counter of this object
"""
def IncrementRefCounter(self) -> None:
"""
Increments the reference counter of this object
"""
@overload
def IsInstance(self,theType : OCP.Standard.Standard_Type) -> bool:
"""
Returns a true value if this is an instance of Type.
Returns a true value if this is an instance of TypeName.
"""
@overload
def IsInstance(self,theTypeName : str) -> bool: ...
@overload
def IsKind(self,theTypeName : str) -> bool:
"""
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
"""
@overload
def IsKind(self,theType : OCP.Standard.Standard_Type) -> bool: ...
def Perform(self,context : ShapeProcess_Context,theProgress : OCP.Message.Message_ProgressRange=OCP.Message.Message_ProgressRange) -> bool:
"""
Performs operation and records changes in the context
"""
def This(self) -> OCP.Standard.Standard_Transient:
"""
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
"""
def __init__(self,func : Any) -> None:
"""
__init__(self: OCP.ShapeProcess.ShapeProcess_UOperator, func: bool (opencascade::handle<ShapeProcess_Context> const&, Message_ProgressRange const&)) -> None
"""
@staticmethod
def get_type_descriptor_s() -> OCP.Standard.Standard_Type:
"""
None
"""
@staticmethod
def get_type_name_s() -> str:
"""
None
"""
pass
|