pycatia.mec_mod_interfaces.origin_elements

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.origin_elements.OriginElements(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
OriginElements

Represents the part’s 3D reference axis system.
It allows an easy access to 3D reference axis system of a Part object thru the
three planes XY, YZ, and ZX.
See Part for parent object.
property plane_xy: AnyObject

Note

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

Returns the XY plane of the part 3D reference axis system.

Example:
The following example returns in plnXY the XY plane of the partRoot
part from the partDoc part document:

Set partRoot = partDoc.Part
Set plnXY = partRoot.originElements.PlaneXY
Return type:

AnyObject

property plane_yz: AnyObject

Note

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

Returns the YZ plane of the part 3D reference axis system.

Example:
The following example returns in plnYZ the YZ plane of the partRoot
part from the partDoc part document:

Set partRoot = partDoc.Part
Set plnYZ = partRoot.originElements.PlaneYZ
Return type:

AnyObject

property plane_zx: AnyObject

Note

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

Returns the ZX plane of the part 3D reference axis system.

Example:
The following example returns in plnZX the ZX plane of the partRoot
part from the partDoc part document:

Set partRoot = partDoc.Part
Set plnZX = partRoot.originElements.PlaneZX
Return type:

AnyObject