|
|
| Matrix4f (Matrix4f _other) |
| | Generated copy constructor.
|
| |
|
unsafe | Matrix4f () |
| | Constructs an empty (default-constructed) instance.
|
| |
|
unsafe | Matrix4f (in MR.Vector4f x, in MR.Vector4f y, in MR.Vector4f z, in MR.Vector4f w) |
| | initializes matrix from 4 row-vectors Generated from constructor MR.Matrix4f.Matrix4f.
|
| |
|
unsafe | Matrix4f (in MR.Matrix3f r, in MR.Vector3f t) |
| | construct from rotation matrix and translation vector Generated from constructor MR.Matrix4f.Matrix4f.
|
| |
|
unsafe | Matrix4f (in MR.AffineXf3f xf) |
| | Generated from constructor MR.Matrix4f.Matrix4f.
|
| |
|
readonly unsafe float | call_Const (int row, int col) |
| | element access Generated from method MR.Matrix4f.operator().
|
| |
|
unsafe ref float | call (int row, int col) |
| | Generated from method MR.Matrix4f.operator().
|
| |
|
unsafe ref MR.Vector4f | index (int row) |
| | Generated from method MR.Matrix4f.operator[].
|
| |
|
readonly unsafe MR.Vector4f | col (int i) |
| | column access Generated from method MR.Matrix4f.col.
|
| |
|
readonly unsafe float | trace () |
| | computes trace of the matrix Generated from method MR.Matrix4f.trace.
|
| |
|
readonly unsafe float | normSq () |
| | compute sum of squared matrix elements Generated from method MR.Matrix4f.normSq.
|
| |
|
readonly unsafe float | norm () |
| | Generated from method MR.Matrix4f.norm.
|
| |
|
readonly unsafe MR.Matrix3f | submatrix3 (int i, int j) |
| | computes submatrix of the matrix with excluded i-th row and j-th column Generated from method MR.Matrix4f.submatrix3.
|
| |
|
readonly unsafe float | det () |
| | computes determinant of the matrix Generated from method MR.Matrix4f.det.
|
| |
|
readonly unsafe MR.Matrix4f | inverse () |
| | computes inverse matrix Generated from method MR.Matrix4f.inverse.
|
| |
|
readonly unsafe MR.Matrix4f | transposed () |
| | computes transposed matrix Generated from method MR.Matrix4f.transposed.
|
| |
|
readonly unsafe MR.Matrix3f | getRotation () |
| | Generated from method MR.Matrix4f.getRotation.
|
| |
|
unsafe void | setRotation (in MR.Matrix3f rot) |
| | Generated from method MR.Matrix4f.setRotation.
|
| |
|
readonly unsafe MR.Vector3f | getTranslation () |
| | Generated from method MR.Matrix4f.getTranslation.
|
| |
|
unsafe void | setTranslation (in MR.Vector3f t) |
| | Generated from method MR.Matrix4f.setTranslation.
|
| |
|
unsafe MR.Misc.? Ref< float > | data () |
| | Generated from method MR.Matrix4f.data.
|
| |
|
readonly unsafe? float | data_Const () |
| | Generated from method MR.Matrix4f.data.
|
| |
|
readonly unsafe MR.Vector3f | call (in MR.Vector3f b) |
| | converts 3d-vector b in 4d-vector (b,1), multiplies matrix on it, and assuming the result is in homogeneous coordinates returns it as 3d-vector Generated from method MR.Matrix4f.operator().
|
| |
|
unsafe ref MR.Matrix4f | addAssign (in MR.Matrix4f b) |
| | Generated from function MR.operator+=.
|
| |
|
unsafe ref MR.Matrix4f | subAssign (in MR.Matrix4f b) |
| | Generated from function MR.operator-=.
|
| |
|
unsafe ref MR.Matrix4f | mulAssign (float b) |
| | Generated from function MR.operator*=.
|
| |
|
unsafe ref MR.Matrix4f | divAssign (float b) |
| | Generated from function MR.operator/=.
|
| |
|
bool | Equals (MR.Matrix4f b) |
| |
|
override bool | Equals (object? other) |
| |
arbitrary 4x4 matrix Generated from class MR.Matrix4f. This is the by-value version of the struct.