pycatia.hybrid_shape_interfaces.hybrid_shape_symmetry

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-07-06 14:02:20.222384

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.hybrid_shape_interfaces.hybrid_shape_symmetry.HybridShapeSymmetry(com_object)

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)

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

Represents the hybrid shape symmetry feature object.
Role: To access the data of the symmetry shape feature object. The data
includes:

The element to be transformed
The reference element which can be a point, a line or a
plane

LICENSING INFORMATION: Creation of volume result requires GSO
License
if GSO License is not granted , setting of Volume context has not
effect

Use the CATIAHybridShapeFactory to create HybridShapeFeature
object.

See also:
HybridShapeFactory
property creation_mode: bool

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property CreationMode() As boolean

Returns or sets the creation mode(creation or
modification).
Legal values: True if the result is a creation feature and False if the
result is a modification feature.

Example:

This example sets that the mode of
the hybShpSymmetry hybrid shape symmetry to creation


hybShpSymmetry.CreationMode = True
Return type:

bool

property elem_to_symmetry: Reference

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property ElemToSymmetry() As Reference

Returns or sets the element to transform.

Example:
This example retrieves in Elem the element to transform for the
Symmetry hybrid shape feature.

Dim Elem As Reference
Set Elem = Symmetry.ElemToSymmetry
Return type:

Reference

property reference: Reference

Note

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

Returns or sets the reference element.This element can be a point, a line
or a plane.
Sub-element(s) supported (see Boundary object): PlanarFace, Edge or
Vertex.

Example:
This example retrieves in Ref the reference element for the Symmetry
hybrid shape feature.

Dim Ref As Reference
Set Ref = Symmetry.Reference
Return type:

Reference

property volume_result: bool

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property VolumeResult() As boolean

Returns or sets the volume result.
Legal values: True if the result of symmetry is required as volume (option
is effective only in case of volumes, requires GSO License) and False if it is
needed as surface .

Example:

This example sets that the result of
the hybShpSymmetry hybrid shape symmetry is volume.


hybShpSymmetry.VolumeResult = True
Return type:

bool