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