|
|
| VectorXu32 (global::System.IntPtr cPtr, bool cMemoryOwn) |
| |
|
void | Dispose () |
| |
|
| VectorXu32 (params uint[] values) |
| |
|
override bool | Equals (object obj) |
| |
|
| VectorXu32 () |
| | Creates an empty vector.
|
| |
| | VectorXu32 (uint size) |
| | Creates an unitialized vector.
|
| |
|
| VectorXu32 (VectorXu32 other) |
| |
|
uint | Size () |
| | Returns the size of the vector, which also correspond to vector number of dimension.
|
| |
|
uint | At (uint index) |
| | Access vector's value at given index.
|
| |
|
void | SetAt (uint index, uint value) |
| | Set value as given index.
|
| |
| double | SquaredLength () |
| | Returns the vector's norm, squared.
|
| |
| double | Length () |
| | Returns the vector's norm.
|
| |
|
void | Normalize () |
| | Normalize the vector.
|
| |
|
string | ToString () |
| |
|
uint | Dot (VectorXu32 v) |
| | Dot product.
|
| |
| VectorXu32 | Cross (VectorXu32 v) |
| | Cross product of two vectors.
|
| |
|
|
static global::System.Runtime.InteropServices.HandleRef | getCPtr (VectorXu32 obj) |
| |
|
static global::System.Runtime.InteropServices.HandleRef | swigRelease (VectorXu32 obj) |
| |
|
static bool | operator== (VectorXu32 v1, VectorXu32 v2) |
| |
|
static bool | operator!= (VectorXu32 v1, VectorXu32 v2) |
| |
|
static VectorXu32 | operator+ (VectorXu32 v1, VectorXu32 v2) |
| |
|
static VectorXu32 | operator- (VectorXu32 v1, VectorXu32 v2) |
| |
|
static VectorXu32 | operator* (VectorXu32 v, uint value) |
| |
|
static VectorXu32 | operator* (uint value, VectorXu32 v) |
| |
|
static VectorXu32 | operator/ (VectorXu32 v, uint value) |
| |
|
static VectorXu32 | operator* (VectorXu32 v1, VectorXu32 v2) |
| |
|
static VectorXu32 | operator/ (VectorXu32 v1, VectorXu32 v2) |
| |
| static VectorXu32 | CreateUniform (uint size, uint value) |
| | Creates a vector filled with one value.
|
| |
|
static bool | InternalNotEqual (VectorXu32 v1, VectorXu32 v2) |
| |
|
static VectorXu32 | InternalDivides (VectorXu32 v, uint value) |
| |
|
static VectorXu32 | InternalDivides (VectorXu32 v1, VectorXu32 v2) |
| |
A dynamically sized arithmetic vector.