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