|
|
| Vector2u64 (global::System.IntPtr cPtr, bool cMemoryOwn) |
| |
|
void | Dispose () |
| |
|
| Vector2u64 (params ulong[] values) |
| |
|
override bool | Equals (object obj) |
| |
|
| Vector2u64 () |
| | Create a vector with unitialized values.
|
| |
| | Vector2u64 (VectorXu64 other) |
| | Build a Vector from a VectorX of same type.
|
| |
| | Vector2u64 (VectorXu64 other, ulong padding) |
| | Build a vector from a VectorX of same type.
|
| |
|
| Vector2u64 (Vector2u64 other) |
| |
|
uint | Size () |
| | Returns the size of the vector, which also correspond to vector number of dimension.
|
| |
|
ulong | At (uint index) |
| | Access vector's value at given index.
|
| |
|
void | SetAt (uint index, ulong 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 () |
| |
|
ulong | Dot (Vector2u64 v) |
| | Dot product of two vectors.
|
| |
| Vector2u64 | Cross (Vector2u64 v) |
| | Cross product of two vectors.
|
| |
|
|
static global::System.Runtime.InteropServices.HandleRef | getCPtr (Vector2u64 obj) |
| |
|
static global::System.Runtime.InteropServices.HandleRef | swigRelease (Vector2u64 obj) |
| |
|
static bool | operator== (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | operator!= (Vector2u64 v1, Vector2u64 v2) |
| |
|
static Vector2u64 | operator+ (Vector2u64 v1, Vector2u64 v2) |
| |
|
static Vector2u64 | operator- (Vector2u64 v1, Vector2u64 v2) |
| |
|
static Vector2u64 | operator* (Vector2u64 v, ulong value) |
| |
|
static Vector2u64 | operator* (ulong value, Vector2u64 v) |
| |
|
static Vector2u64 | operator/ (Vector2u64 v, ulong value) |
| |
|
static Vector2u64 | operator* (Vector2u64 v1, Vector2u64 v2) |
| |
|
static Vector2u64 | operator/ (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | operator< (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | operator<= (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | operator> (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | operator>= (Vector2u64 v1, Vector2u64 v2) |
| |
| static Vector2u64 | CreateUniform (ulong value) |
| | Create a vector with the given value for all components.
|
| |
|
static Vector2u64 | InternalDivides (Vector2u64 v, ulong value) |
| |
|
static Vector2u64 | InternalDivides (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | InternalLess (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | InternalLessEqual (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | InternalGreater (Vector2u64 v1, Vector2u64 v2) |
| |
|
static bool | InternalGreaterEqual (Vector2u64 v1, Vector2u64 v2) |
| |
An arithmetic vector.
- Parameters
-
| T | The type wrote in the vector. |
| N | The size, or number of dimension of the vector. |
Aliases can be used to made this class more practical to use. They use the following convention: VectorNX Where N is the size and X the type. The types currently available are:
- U8 and I8 respectively for unsigned and signed 8bits integers.
- U16 and I16 respectively for unsigned and signed 16bits integers.
- U32 and I32 respectively for unsigned and signed 32bits integers.
- U64 and I64 respectively for unsigned and signed 64bits integers.
- F for single precision floats.
- D for double precision floats.
Examples:
- Vector2i32: 2 dimensional 32bits signed integer.
- Vector3f: 3 dimensionnal single precision float.
- Examples
- CreateDataFrame.cs.