pycatia.hybrid_shape_interfaces.hybrid_shape_point_coord

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_point_coord.HybridShapePointCoord(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
CATGSMIDLItf.Point
HybridShapePointCoord

Point defined by coordinates.
Role: To access data of the point feature created with its cartesian
coordinates.

See also:
Length
See also:
Reference
See also:
HybridShapeFactory
property pt_ref: Reference

Note

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

Returns or Sets the reference point for PointCoord
feature.
This data is not mandatory, if element is null, the origin point is
taken.
When an element is given, X, Y and Z are measured starting from this
point.
Sub-element(s) supported (see Boundary object): Vertex.

Example
:
This example retrieves in oPtRef the reference point for PointCoord
feature.

Dim oPtRef As CATIAReference
Set oPtRef = PointCoord.PtRef
Return type:

Reference

property ref_axis_system: Reference

Note

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

Returns or Sets the reference Axis System for PointCoord
feature.
This data is not mandatory, if element is null, the absolute axis system is
taken.
When an element is given, X, Y and Z are considered in this Axis
system.
If reference point is not specified, X,Y and Z are measured from origin of
this axis system. *

Example
:
This example retrieves in oRefAxis the reference Axis System for
PointCoord feature.

Dim oRefAxis As CATIAReference
Set oRefAxis = PointCoord.RefAxisSystem
Return type:

Reference

property x: Length

Note

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

Returns X coordinate of the point.

Example
:
This example retrieves in oX the X coordinate for the PointCoord hybrid
shape feature.

Dim oX As CATIALength
Set oX = PointCoord.X
Return type:

Length

property y: Length

Note

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

Returns Y coordinate of the point.

Example
:
This example retrieves in oY the Y coordinate for the PointCoord hybrid
shape feature.

Dim oY As CATIALength
Set oY = PointCoord.Y
Return type:

Length

property z: Length

Note

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

Returns Z coordinate of the point.

Example
:
This example retrieves in oZ the Z coordinate for the PointCoord hybrid
shape feature.

Dim oZ As CATIALength
Set oZ = PointCoord.Z
Return type:

Length