Public Member Functions | |
Matrix2ll | __iadd__ (self, Matrix2ll b) |
Matrix2ll | __imatmul__ (self, int b) |
None | __init__ (self) |
None | __init__ (self, Vector2ll x, Vector2ll y) |
None | __init__ (self, Matrix2ll arg0) |
Matrix2ll | __isub__ (self, Matrix2ll b) |
Matrix2ll | __itruediv__ (self, int b) |
Vector2ll | col (self, int i) |
int | det (self) |
float | norm (self) |
int | normSq (self) |
int | trace (self) |
Matrix2ll | transposed (self) |
Vector2ll | x (self) |
None | x (self, Vector2ll arg1) |
Static Public Member Functions | |
Matrix2ll | fromColumns (Vector2ll x, Vector2ll y) |
Matrix2ll | fromRows (Vector2ll x, Vector2ll y) |
Matrix2ll | identity () |
Matrix2ll | scale (int s) |
Matrix2ll | scale (int sx, int sy) |
Matrix2ll | scale (Vector2ll s) |
Matrix2ll | zero () |
Protected Member Functions | |
Vector2ll | _Subscript (self, int row) |
Vector2ll | _Subscript (self, int row) |
Generated from: MR::Matrix2ll Aliases: Matrix2_long_long, Vector2_long_long_MatrixType, Matrix2_long_long arbitrary 2x2 matrix \\ingroup MatrixGroup
None meshlib.mrmeshpy.Matrix2ll.__init__ | ( | self | ) |
initializes matrix from its 2 rows
None meshlib.mrmeshpy.Matrix2ll.__init__ | ( | self, | |
Matrix2ll | arg0 ) |
Implicit copy constructor.
Matrix2ll meshlib.mrmeshpy.Matrix2ll.__imatmul__ | ( | self, | |
int | b ) |
Matrix2ll meshlib.mrmeshpy.Matrix2ll.__itruediv__ | ( | self, | |
int | b ) |
|
protected |
row access
|
protected |
Vector2ll meshlib.mrmeshpy.Matrix2ll.col | ( | self, | |
int | i ) |
column access
int meshlib.mrmeshpy.Matrix2ll.det | ( | self | ) |
computes determinant of the matrix
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
constructs a matrix from its 2 rows
|
static |
float meshlib.mrmeshpy.Matrix2ll.norm | ( | self | ) |
int meshlib.mrmeshpy.Matrix2ll.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.Matrix2ll.trace | ( | self | ) |
computes trace of the matrix
Matrix2ll meshlib.mrmeshpy.Matrix2ll.transposed | ( | self | ) |
computes transposed matrix
Vector2ll meshlib.mrmeshpy.Matrix2ll.x | ( | self | ) |
rows, identity matrix by default
None meshlib.mrmeshpy.Matrix2ll.x | ( | self, | |
Vector2ll | arg1 ) |
|
static |