Role: To access data of the point feature created with its cartesian coordinates.
- See also:
- See also:
- See also:
Properties
- Property PtRef() As
-
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 object): .- Example :
-
This example retrieves in
oPtRefthe reference point forPointCoordfeature.Dim oPtRef As CATIAReference Set oPtRef = PointCoord.PtRef
- Property RefAxisSystem() As
-
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
oRefAxisthe reference Axis System forPointCoordfeature.Dim oRefAxis As CATIAReference Set oRefAxis = PointCoord.RefAxisSystem
- Property X() As (Read Only)
-
Returns X coordinate of the point.
- Example :
-
This example retrieves in
oXthe X coordinate for thePointCoordhybrid shape feature.Dim oX As CATIALength Set oX = PointCoord.X
- Property Y() As (Read Only)
-
Returns Y coordinate of the point.
- Example :
-
This example retrieves in
oYthe Y coordinate for thePointCoordhybrid shape feature.Dim oY As CATIALength Set oY = PointCoord.Y
- Property Z() As (Read Only)
-
Returns Z coordinate of the point.
- Example :
-
This example retrieves in
oZthe Z coordinate for thePointCoordhybrid shape feature.Dim oZ As CATIALength Set oZ = PointCoord.Z