|
|
unsafe new ref Matrix2d | _Ref [get] |
| | Get the underlying struct.
|
| |
|
new ref MR.Vector2d | x [get] |
| | rows, identity matrix by default
|
| |
|
new ref MR.Vector2d | y [get] |
| |
|
unsafe new ref MR.Vector2d | this[int row] [get] |
| | Generated from method MR.Matrix2d.operator[].
|
| |
|
unsafe ref readonly Matrix2d | _Ref [get] |
| | Get the underlying struct.
|
| |
|
ref readonly MR.Vector2d | x [get] |
| | rows, identity matrix by default
|
| |
|
ref readonly MR.Vector2d | y [get] |
| |
|
unsafe ref readonly MR.Vector2d | this[int row] [get] |
| | row access Generated from method MR.Matrix2d.operator[].
|
| |
|
virtual bool | _IsOwning [get] |
| | Returns true if this is an owning instance, and when disposed, will destroy the underlying C++ instance. If false, we assume that the underlying C++ instance will live long enough.
|
| |
|
|
static implicit | operator ConstBox_Matrix2d (Matrix2d other) |
| | Convert from a struct by copying it. Note that only ConstBox_Matrix2d has this conversion, Box_Matrix2d intentionally doesn't.
|
| |
|
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.ConstBox_Matrix2d a, MR.ConstBox_Matrix2d b) |
| | Generated from function MR.operator==.
|
| |
|
static unsafe bool | operator!= (MR.ConstBox_Matrix2d a, MR.ConstBox_Matrix2d b) |
| |
|
static unsafe MR.Matrix2d | operator+ (MR.ConstBox_Matrix2d a, in MR.Matrix2d b) |
| | Generated from function MR.operator+.
|
| |
|
static unsafe MR.Matrix2d | operator- (MR.ConstBox_Matrix2d a, in MR.Matrix2d b) |
| | Generated from function MR.operator-.
|
| |
|
static unsafe MR.Matrix2d | operator* (double a, MR.ConstBox_Matrix2d b) |
| | Generated from function MR.operator*.
|
| |
|
static unsafe MR.Matrix2d | operator* (MR.ConstBox_Matrix2d b, double a) |
| | Generated from function MR.operator*.
|
| |
|
static unsafe MR.Matrix2d | operator/ (ConstBox_Matrix2d b, double a) |
| | Generated from function MR.operator/.
|
| |
|
static unsafe MR.Vector2d | operator* (MR.ConstBox_Matrix2d a, in MR.Vector2d b) |
| | x = a * b Generated from function MR.operator*.
|
| |
|
static unsafe MR.Matrix2d | operator* (MR.ConstBox_Matrix2d a, in MR.Matrix2d b) |
| | product of two matrices Generated from function MR.operator*.
|
| |
|
virtual unsafe void | Dispose (bool disposing) |
| |
|
bool | _IsOwningVal |
| |
arbitrary 2x2 matrix Generated from class MR.Matrix2d. This is the non-const reference to the struct.