|
|
static implicit | operator Matrix2f (ConstBox_Matrix2f other) |
| | Copy contents from a wrapper class to this struct.
|
| |
|
static MR.Matrix2f | zero () |
| | Generated from method MR.Matrix2f.zero.
|
| |
|
static MR.Matrix2f | identity () |
| | Generated from method MR.Matrix2f.identity.
|
| |
|
static MR.Matrix2f | scale (float s) |
| | returns a matrix that scales uniformly Generated from method MR.Matrix2f.scale.
|
| |
|
static MR.Matrix2f | scale (float sx, float sy) |
| | returns a matrix that has its own scale along each axis Generated from method MR.Matrix2f.scale.
|
| |
|
static unsafe MR.Matrix2f | scale (in MR.Vector2f s) |
| | Generated from method MR.Matrix2f.scale.
|
| |
|
static MR.Matrix2f | rotation (float angle) |
| | creates matrix representing rotation around origin on given angle Generated from method MR.Matrix2f.rotation.
|
| |
|
static unsafe MR.Matrix2f | rotation (in MR.Vector2f from, in MR.Vector2f to) |
| | creates matrix representing rotation that after application to (from) makes (to) vector Generated from method MR.Matrix2f.rotation.
|
| |
|
static unsafe MR.Matrix2f | fromRows (in MR.Vector2f x, in MR.Vector2f y) |
| | constructs a matrix from its 2 rows Generated from method MR.Matrix2f.fromRows.
|
| |
|
static unsafe MR.Matrix2f | fromColumns (in MR.Vector2f x, in MR.Vector2f y) |
| | constructs a matrix from its 2 columns; use this method to get the matrix that transforms basis vectors ( plusX, plusY ) into vectors ( x, y ) respectively Generated from method MR.Matrix2f.fromColumns.
|
| |
|
static unsafe bool | operator== (MR.Matrix2f a, MR.Matrix2f b) |
| | Generated from function MR.operator==.
|
| |
|
static unsafe bool | operator!= (MR.Matrix2f a, MR.Matrix2f b) |
| |
|
static unsafe MR.Matrix2f | operator+ (MR.Matrix2f a, in MR.Matrix2f b) |
| | Generated from function MR.operator+.
|
| |
|
static unsafe MR.Matrix2f | operator- (MR.Matrix2f a, in MR.Matrix2f b) |
| | Generated from function MR.operator-.
|
| |
|
static unsafe MR.Matrix2f | operator* (float a, MR.Matrix2f b) |
| | Generated from function MR.operator*.
|
| |
|
static unsafe MR.Matrix2f | operator* (MR.Matrix2f b, float a) |
| | Generated from function MR.operator*.
|
| |
|
static MR.Matrix2f | operator/ (MR.Matrix2f b, float a) |
| | Generated from function MR.operator/.
|
| |
|
static unsafe MR.Vector2f | operator* (MR.Matrix2f a, in MR.Vector2f b) |
| | x = a * b Generated from function MR.operator*.
|
| |
|
static unsafe MR.Matrix2f | operator* (MR.Matrix2f a, in MR.Matrix2f b) |
| | product of two matrices Generated from function MR.operator*.
|
| |
arbitrary 2x2 matrix Generated from class MR.Matrix2f. This is the by-value version of the struct.