pycatia.hybrid_shape_interfaces.hybrid_shape_axis_to_axis

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_axis_to_axis.HybridShapeAxisToAxis(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
HybridShapeAxisToAxis

Represents the hybrid shape axis to axis transformation feature
object.
Role: To access the data of the axis to axis transformation shape feature
object. The data includes:

The element to be transformed
The reference axis system
The target axis system

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 hybShpAxisToAxis hybrid shape axis to axis to
creation


hybShpAxisToAxis.CreationMode = True
Return type:

bool

property elem_to_transform: Reference

Note

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

Returns or sets the element to transform.

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

Dim Elem As Reference
Set Elem = AxisToAxis.ElemToTransform
Return type:

Reference

property reference_axis: Reference

Note

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

Returns or sets the reference axis.

Example:
This example retrieves in Ref the reference axis for the AxisToAxis
hybrid shape feature.

Dim Ref As Reference
Set Ref = AxisToAxis.ReferenceAxis
Return type:

Reference

property target_axis: Reference

Note

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

Returns or sets the target axis.

Example:
This example retrieves in Ref the target axis for the AxisToAxis hybrid
shape feature.

Dim Ref As Reference
Set Ref = AxisToAxis.ReferenceAxis
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 axis to axis transformation 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 hybShpAxisToAxis hybrid shape AxisToAxis is
volume.


hybShpAxisToAxis.VolumeResult = True
Return type:

bool