|
|
static implicit | operator Matrix2d (ConstBox_Matrix2d other) |
| | Copy contents from a wrapper class to this struct.
|
| |
|
static MR.Matrix2d | zero () |
| | Generated from method MR.Matrix2d.zero.
|
| |
|
static MR.Matrix2d | identity () |
| | Generated from method MR.Matrix2d.identity.
|
| |
|
static MR.Matrix2d | scale (double s) |
| | returns a matrix that scales uniformly Generated from method MR.Matrix2d.scale.
|
| |
|
static MR.Matrix2d | scale (double sx, double sy) |
| | returns a matrix that has its own scale along each axis Generated from method MR.Matrix2d.scale.
|
| |
|
static unsafe MR.Matrix2d | scale (in MR.Vector2d s) |
| | Generated from method MR.Matrix2d.scale.
|
| |
|
static MR.Matrix2d | rotation (double angle) |
| | creates matrix representing rotation around origin on given angle Generated from method MR.Matrix2d.rotation.
|
| |
|
static unsafe MR.Matrix2d | rotation (in MR.Vector2d from, in MR.Vector2d to) |
| | creates matrix representing rotation that after application to (from) makes (to) vector Generated from method MR.Matrix2d.rotation.
|
| |
|
static unsafe MR.Matrix2d | fromRows (in MR.Vector2d x, in MR.Vector2d y) |
| | constructs a matrix from its 2 rows Generated from method MR.Matrix2d.fromRows.
|
| |
|
static unsafe MR.Matrix2d | fromColumns (in MR.Vector2d x, in MR.Vector2d 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.Matrix2d.fromColumns.
|
| |
|
static unsafe bool | operator== (MR.Matrix2d a, MR.Matrix2d b) |
| | Generated from function MR.operator==.
|
| |
|
static unsafe bool | operator!= (MR.Matrix2d a, MR.Matrix2d b) |
| |
|
static unsafe MR.Matrix2d | operator+ (MR.Matrix2d a, in MR.Matrix2d b) |
| | Generated from function MR.operator+.
|
| |
|
static unsafe MR.Matrix2d | operator- (MR.Matrix2d a, in MR.Matrix2d b) |
| | Generated from function MR.operator-.
|
| |
|
static unsafe MR.Matrix2d | operator* (double a, MR.Matrix2d b) |
| | Generated from function MR.operator*.
|
| |
|
static unsafe MR.Matrix2d | operator* (MR.Matrix2d b, double a) |
| | Generated from function MR.operator*.
|
| |
|
static MR.Matrix2d | operator/ (MR.Matrix2d b, double a) |
| | Generated from function MR.operator/.
|
| |
|
static unsafe MR.Vector2d | operator* (MR.Matrix2d a, in MR.Vector2d b) |
| | x = a * b Generated from function MR.operator*.
|
| |
|
static unsafe MR.Matrix2d | operator* (MR.Matrix2d a, in MR.Matrix2d b) |
| | product of two matrices Generated from function MR.operator*.
|
| |
arbitrary 2x2 matrix Generated from class MR.Matrix2d. This is the by-value version of the struct.