Public Member Functions | |
Matrix3ll | __iadd__ (self, Matrix3ll b) |
Matrix3ll | __imatmul__ (self, int b) |
None | __init__ (self) |
None | __init__ (self, Vector3ll x, Vector3ll y, Vector3ll z) |
None | __init__ (self, Matrix3ll arg0) |
Matrix3ll | __isub__ (self, Matrix3ll b) |
Matrix3ll | __itruediv__ (self, int b) |
Vector3ll | col (self, int i) |
int | det (self) |
float | norm (self) |
int | normSq (self) |
int | trace (self) |
Matrix3ll | transposed (self) |
Vector3ll | x (self) |
None | x (self, Vector3ll arg1) |
Static Public Member Functions | |
Matrix3ll | fromColumns (Vector3ll x, Vector3ll y, Vector3ll z) |
Matrix3ll | fromRows (Vector3ll x, Vector3ll y, Vector3ll z) |
Matrix3ll | identity () |
Matrix3ll | scale (int s) |
Matrix3ll | scale (int sx, int sy, int sz) |
Matrix3ll | scale (Vector3ll s) |
Matrix3ll | zero () |
Protected Member Functions | |
Vector3ll | _Subscript (self, int row) |
Vector3ll | _Subscript (self, int row) |
Generated from: MR::Matrix3ll Aliases: Vector3_long_long_MatrixType, Matrix3_long_long, AffineXf_Vector3ll.M, Matrix3_long_long, AffineXf_Vector3ll.M arbitrary 3x3 matrix \\ingroup MatrixGroup
None meshlib.mrmeshpy.Matrix3ll.__init__ | ( | self | ) |
initializes matrix from its 3 rows
None meshlib.mrmeshpy.Matrix3ll.__init__ | ( | self, | |
Matrix3ll | arg0 ) |
Implicit copy constructor.
Matrix3ll meshlib.mrmeshpy.Matrix3ll.__imatmul__ | ( | self, | |
int | b ) |
Matrix3ll meshlib.mrmeshpy.Matrix3ll.__itruediv__ | ( | self, | |
int | b ) |
|
protected |
row access
|
protected |
Vector3ll meshlib.mrmeshpy.Matrix3ll.col | ( | self, | |
int | i ) |
column access
int meshlib.mrmeshpy.Matrix3ll.det | ( | self | ) |
computes determinant of the matrix
constructs a matrix from its 3 columns; use this method to get the matrix that transforms basis vectors ( plusX, plusY, plusZ ) into vectors ( x, y, z ) respectively
constructs a matrix from its 3 rows
|
static |
float meshlib.mrmeshpy.Matrix3ll.norm | ( | self | ) |
int meshlib.mrmeshpy.Matrix3ll.normSq | ( | self | ) |
compute sum of squared matrix elements
|
static |
returns a matrix that scales uniformly
|
static |
returns a matrix that has its own scale along each axis
int meshlib.mrmeshpy.Matrix3ll.trace | ( | self | ) |
computes trace of the matrix
Matrix3ll meshlib.mrmeshpy.Matrix3ll.transposed | ( | self | ) |
computes transposed matrix
Vector3ll meshlib.mrmeshpy.Matrix3ll.x | ( | self | ) |
rows, identity matrix by default
None meshlib.mrmeshpy.Matrix3ll.x | ( | self, | |
Vector3ll | arg1 ) |
|
static |