Class Outline2D
Description
A 2x1 array that stores a two-dimensional outline.
Array provides methods for accessing its elemnts by index(indices) and for modifying its elements. Array object "does not know" its dimentions.
Array Dimensions: [2]
User Guide References:
Method Summary
| |
| Creates new array object with uninitialized elements. |
| |
| Gets an array element with the specified index(indices). If an index is out of range throws exceptioncipXInvalidArrayIndex. |
void | |
| 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.
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.