#include <xsi_vector3.h>
Public Member Functions |
|
| CVector4Array (LONG in_size=0) | |
| CVector4Array (const CVector4Array &in_ArrayToCopy) | |
| ~CVector4Array () | |
| CVector4Array & | operator= (const CVector4Array &in_array) |
| LONG | GetCount () const |
| CStatus | Add (const CVector4 &in_item) |
| CStatus | Clear () |
| CStatus | Resize (LONG in_size) |
| const CVector4 & | operator[] (LONG in_index) const |
| CVector4 & | operator[] (LONG in_index) |
| bool | operator== (const CVector4Array &in_array) const |
| bool | operator!= (const CVector4Array &in_array) const |
The array is zero-based, which means that the first item index is 0 and the larger index is one less that the number of elements contained in the array.
| CVector4Array | ( | LONG | in_size = 0 |
) |
Constructs a CVector4Array and optionally initializes the array to a known size.
| in_size | Size of array, defaults to 0. |
| CVector4Array | ( | const CVector4Array & | in_ArrayToCopy | ) |
Constructs a CVector4Array object from another CVector4Array object.
| in_ArrayToCopy | constant CVector4Array object. |
Default destructor.
| CVector4Array& operator= | ( | const CVector4Array & | in_array | ) |
Assignment operator.
| in_array | constant class object. |
Returns the number of items in this CVector4Array
Adds a LONG at the end of this array.
| in_item | New item to be added at the end of the array. |
Erases all elements contained in the array.
Reallocates memory for the array, preserves its contents if new new size is larger than existing size.
| in_size | New size of the array. |
CStatus::InvalidArgument in_size < 0
Accessor to elements at a given index. This function can only be called by constant objects, the returned value is read-only.
| in_index | index in this zero-based array. The index must be greater or equal to zero and smaller than the number of elements in the array, otherwise the results are unpredictable. |
| CVector4& operator[] | ( | LONG | in_index | ) |
Accessor to elements at a given index.
| in_index | index in this zero-based array. The index must be greater or equal to zero and smaller than the number of elements in the array, otherwise the results are unpredictable. |
Equality operator.
| in_array | CVector4Array to compare with. |
Inequality operator.
| in_array |