Public Member Functions | |
int | __call__ (self, int row, int col) |
int | __call__ (self, int row, int col) |
Matrix4i | __iadd__ (self, Matrix4i b) |
Matrix4i | __imatmul__ (self, int b) |
None | __init__ (self) |
None | __init__ (self, Vector4i x, Vector4i y, Vector4i z, Vector4i w) |
None | __init__ (self, Matrix3i r, Vector3i t) |
None | __init__ (self, Matrix4i arg0) |
Matrix4i | __isub__ (self, Matrix4i b) |
Matrix4i | __itruediv__ (self, int b) |
Vector4i | col (self, int i) |
int | data (self) |
int | data (self) |
int | det (self) |
Matrix3i | getRotation (self) |
Vector3i | getTranslation (self) |
Matrix4i | inverse (self) |
float | norm (self) |
int | normSq (self) |
None | setRotation (self, Matrix3i rot) |
None | setTranslation (self, Vector3i t) |
Matrix3i | submatrix3 (self, int i, int j) |
int | trace (self) |
Matrix4i | transposed (self) |
Vector4i | x (self) |
None | x (self, Vector4i arg1) |
Static Public Member Functions | |
Matrix4i | identity () |
Matrix4i | scale (int s) |
Matrix4i | zero () |
Protected Member Functions | |
Vector4i | _Subscript (self, int row) |
Vector4i | _Subscript (self, int row) |
Generated from: MR::Matrix4i Aliases: Vector4_int_MatrixType, Matrix4_int, Matrix4_int arbitrary 4x4 matrix \\ingroup MatrixGroup
None meshlib.mrmeshpy.Matrix4i.__init__ | ( | self | ) |
initializes matrix from 4 row-vectors
construct from rotation matrix and translation vector
None meshlib.mrmeshpy.Matrix4i.__init__ | ( | self, | |
Matrix4i | arg0 ) |
Implicit copy constructor.
int meshlib.mrmeshpy.Matrix4i.__call__ | ( | self, | |
int | row, | ||
int | col ) |
element access
int meshlib.mrmeshpy.Matrix4i.__call__ | ( | self, | |
int | row, | ||
int | col ) |
Matrix4i meshlib.mrmeshpy.Matrix4i.__imatmul__ | ( | self, | |
int | b ) |
Matrix4i meshlib.mrmeshpy.Matrix4i.__itruediv__ | ( | self, | |
int | b ) |
|
protected |
row access
|
protected |
Vector4i meshlib.mrmeshpy.Matrix4i.col | ( | self, | |
int | i ) |
column access
int meshlib.mrmeshpy.Matrix4i.data | ( | self | ) |
int meshlib.mrmeshpy.Matrix4i.data | ( | self | ) |
int meshlib.mrmeshpy.Matrix4i.det | ( | self | ) |
computes determinant of the matrix
Matrix3i meshlib.mrmeshpy.Matrix4i.getRotation | ( | self | ) |
Vector3i meshlib.mrmeshpy.Matrix4i.getTranslation | ( | self | ) |
|
static |
Matrix4i meshlib.mrmeshpy.Matrix4i.inverse | ( | self | ) |
computes inverse matrix
float meshlib.mrmeshpy.Matrix4i.norm | ( | self | ) |
int meshlib.mrmeshpy.Matrix4i.normSq | ( | self | ) |
compute sum of squared matrix elements
|
static |
returns a matrix that scales uniformly
None meshlib.mrmeshpy.Matrix4i.setRotation | ( | self, | |
Matrix3i | rot ) |
None meshlib.mrmeshpy.Matrix4i.setTranslation | ( | self, | |
Vector3i | t ) |
Matrix3i meshlib.mrmeshpy.Matrix4i.submatrix3 | ( | self, | |
int | i, | ||
int | j ) |
computes submatrix of the matrix with excluded i-th row and j-th column
int meshlib.mrmeshpy.Matrix4i.trace | ( | self | ) |
computes trace of the matrix
Matrix4i meshlib.mrmeshpy.Matrix4i.transposed | ( | self | ) |
computes transposed matrix
Vector4i meshlib.mrmeshpy.Matrix4i.x | ( | self | ) |
rows, identity matrix by default
None meshlib.mrmeshpy.Matrix4i.x | ( | self, | |
Vector4i | arg1 ) |
|
static |