pycatia.mec_mod_interfaces.hybrid_shape

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-06-11 12:40:47.360445

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.mec_mod_interfaces.hybrid_shape.HybridShape(com_object)

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
HybridShape

Represents the hybrid shape object.
append_hybrid_shape(i_hybrid_shape: HybridShape) None

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Sub AppendHybridShape(HybridShape iHybridShape)

Appends a hybrid shape to another hybrid shape.

Parameters:

iHybridShape
The hybrid shape to append.

Example:
This example appends the hybrid shape newHybridShape to the hybrid
shape oldHybridShape:

oldHybridShape.AppendHybridShape (newHybridShape)
Parameters:

i_hybrid_shape (HybridShape) –

Return type:

None

compute() None

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445))
o Sub Compute()

Computes the result of the hybrid shape.
Return type:

None

property thickness: HybridShape

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Thickness() As HybridShape (Read Only)

Returns the thickness of the hybrid shape.
The thickness is a CATIAHybridShapeThickness.

Example:
The following example returns the thickness ExtrudeThickness of the
extrude Extrude.1 as the origin point of the axis system
AxisSystem0:

Dim Extrude1 As AnyObject
Set Extrude1 = HybridBody1.HybridShapes.Item ( “Extrude.1” )
Dim Thickness1 As HybridShapeThickness
Set Thickness1 = Extrude1.Thickness
Return type:

HybridShape