pycatia.mec_mod_interfaces.ordered_geometrical_set

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.ordered_geometrical_set.OrderedGeometricalSet(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
OrderedGeometricalSet

The object is an ordered geometrical set.
The ordered geometrical set manages a set of hybrid shapes, a set of bodies and
a set of ordered geometrical sets.
It belongs to the OrderedGeometricalSets collection of a Part or
OrderedGeometricalSet object.
property bodies: Bodies

Note

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

Returns the ordered geometrical set’s Bodies collection.

Example:
The following example returns in bodyColl the collection of bodies of
the ordered geometrical set OrderedGeometricalSet1 :

Set bodyColl = OrderedGeometricalSet1.Bodies
Return type:

Bodies

property hybrid_shapes: HybridShapes

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445)
o Property HybridShapes() As HybridShapes (Read Only)

Returns the list of hybrid shapes included in the ordered geometrical
set.

Returns:
oHybridShapes The list of hybrid shapes in the ordered geometrical set
(@see CATIAHybridShapes
for more information).

Example:
The following example returns in HybridShapes1 the list
of
hybrid shapes in the ordered geometrical
setOrderedGeometricalSet1:

Dim HybridShapes1 As HybridShapes
Set HybridShapes1 = OrderedGeometricalSet1.HybridShapes
Return type:

HybridShapes

insert_hybrid_shape(i_hybrid_shape: HybridShape) None

Note

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

Inserts a hybrid shape to the ordered geometrical set.

Parameters:

iHybridShape
The hybrid shape to insert.

Example:
This example inserts the hybrid shape HybridShape1 to the ordered
geometrical set OrderedGeometricalSet1:

OrderedGeometricalSet1.InsertHybridShape
(HybridShape1)
Parameters:

i_hybrid_shape (HybridShape) –

Return type:

None

property ordered_geometrical_sets: OrderedGeometricalSets

Note

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

Returns the ordered geometrical set’s OrderedGeometricalSets
collection.

Example:
The following example returns in OrderedGeometricalSetColl the
collection of ordered geometrical set of the ordered geometrical set
OrderedGeometricalSet1 :

Set OrderedGeometricalSetColl = OrderedGeometricalSet1.OrderedGeometricalSets
Return type:

OrderedGeometricalSets

property ordered_sketches: Sketches

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445)
o Property OrderedSketches() As Sketches (Read Only)

Returns the ordered geometrical set’s Sketches collection. These sketches
are those inside the ordered geometrical set at all
levels.

Example:
The following example returns in sketchesCollection the collection of
sketches of an ordered geometrical set :

Set sketchesCollection = OrderedGeometricalSet1.OrderedSketches
Return type:

Sketches