Class Point3D
Description
A 3x1 array that stores a three-dimensional point.
Array provides methods for accessing its elemnts by index(indices) and for modifying its elements. Array object "does not know" its dimentions.
Array Dimensions: [3]
User Guide References:
Arrays:Point3D,
Initializing Objects:Point3D,
Drawing Views And Models:Point3D,
Modifying Views:Point3D,
Detailed Views:Point3D,
Auxiliary Views:Point3D,
Revolved Views:Point3D,
Attaching the Geometric Tolerances:Point3D,
Transformations:Point3D,
Evaluation of Curves and Edges:Point3D,
Geometry of datums:Point3D,
Modifying Dimensions:Point3D,
Creo Object TOOLKIT Java Classes:Point3D Method Summary
| |
| Creates new array object with uninitialized elements. |
double | |
| Gets an array element with the specified index(indices). If an index is out of range throws exceptioncipXInvalidArrayIndex. |
void | set (int idx0, double value) |
| Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exceptioncipXInvalidArrayIndex. |
Method Detail
Gets an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
Returns:
Element value.
set |
void | set | (int idx0, double value) |
Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
value
New element value.
Returns:
Creates new array object with uninitialized elements.
Returns:
Created array.