Classes | |
| class | QR |
Static Public Member Functions | |
| None | __init__ (*args, **kwargs) |
| Matrix3_unsigned_char | fromColumns (Vector3_unsigned_char x, Vector3_unsigned_char y, Vector3_unsigned_char z) |
| Matrix3_unsigned_char | fromRows (Vector3_unsigned_char x, Vector3_unsigned_char y, Vector3_unsigned_char z) |
| Matrix3_unsigned_char | identity () |
| Matrix3_unsigned_char | operator (*args, **kwargs) |
| Matrix3_unsigned_char | operator (*args, **kwargs) |
| Matrix3_unsigned_char | scale (int s) |
| Matrix3_unsigned_char | scale (int sx, int sy, int sz) |
| Matrix3_unsigned_char | scale (Vector3_unsigned_char s) |
| Matrix3_unsigned_char | zero () |
Static Public Attributes | |
| Vector3_unsigned_char | VectorType = Vector3_unsigned_char |
Static Protected Attributes | |
| typing | _offsetof_y = 3 |
| typing | _offsetof_z = 6 |
Generated from: MR::Matrix3<unsigned char> Aliases: Vector3_unsigned_char.MatrixType arbitrary 3x3 matrix
|
static |
| None mrmeshpy.Matrix3_unsigned_char.__init__ | ( | self | ) |
| None mrmeshpy.Matrix3_unsigned_char.__init__ | ( | self, | |
| Vector3_unsigned_char | x, | ||
| Vector3_unsigned_char | y, | ||
| Vector3_unsigned_char | z ) |
initializes matrix from its 3 rows
| None mrmeshpy.Matrix3_unsigned_char.__init__ | ( | self, | |
| Matrix3_unsigned_char | arg0 ) |
Implicit copy constructor.
| Matrix3i mrmeshpy.Matrix3_unsigned_char.__add__ | ( | self, | |
| Matrix3_unsigned_char | b ) |
NOTE: We use `std::declval()` in the operators below because libclang 18 in our binding generator is bugged and chokes on decltyping `a.x` and such. TODO fix this when we update libclang.
| bool mrmeshpy.Matrix3_unsigned_char.__eq__ | ( | self, | |
| Matrix3_unsigned_char | b ) |
| Vector3_unsigned_char mrmeshpy.Matrix3_unsigned_char.__getitem__ | ( | self, | |
| int | row ) |
row access
| Vector3_unsigned_char mrmeshpy.Matrix3_unsigned_char.__getitem__ | ( | self, | |
| int | row ) |
| Matrix3_unsigned_char mrmeshpy.Matrix3_unsigned_char.__iadd__ | ( | self, | |
| Matrix3_unsigned_char | b ) |
| Matrix3_unsigned_char mrmeshpy.Matrix3_unsigned_char.__imatmul__ | ( | self, | |
| int | b ) |
| Matrix3_unsigned_char mrmeshpy.Matrix3_unsigned_char.__isub__ | ( | self, | |
| Matrix3_unsigned_char | b ) |
| Matrix3_unsigned_char mrmeshpy.Matrix3_unsigned_char.__itruediv__ | ( | self, | |
| int | b ) |
| Matrix3i mrmeshpy.Matrix3_unsigned_char.__mul__ | ( | self, | |
| int | a ) |
| Matrix3i mrmeshpy.Matrix3_unsigned_char.__mul__ | ( | self, | |
| Matrix3_unsigned_char | b ) |
product of two matrices
| Vector3i mrmeshpy.Matrix3_unsigned_char.__mul__ | ( | self, | |
| Vector3_unsigned_char | b ) |
x = a * b
| bool mrmeshpy.Matrix3_unsigned_char.__ne__ | ( | self, | |
| Matrix3_unsigned_char | b ) |
| str mrmeshpy.Matrix3_unsigned_char.__repr__ | ( | self | ) |
| Matrix3i mrmeshpy.Matrix3_unsigned_char.__rmul__ | ( | self, | |
| int | b ) |
| None mrmeshpy.Matrix3_unsigned_char.__setitem__ | ( | self, | |
| int | arg0, | ||
| Vector3_unsigned_char | arg1 ) |
| Matrix3i mrmeshpy.Matrix3_unsigned_char.__sub__ | ( | self, | |
| Matrix3_unsigned_char | b ) |
| Matrix3i mrmeshpy.Matrix3_unsigned_char.__truediv__ | ( | self, | |
| int | a ) |
| Vector3_unsigned_char mrmeshpy.Matrix3_unsigned_char.col | ( | self, | |
| int | i ) |
column access
| int mrmeshpy.Matrix3_unsigned_char.det | ( | self | ) |
computes determinant of the matrix
|
static |
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
|
static |
constructs a matrix from its 3 rows
|
static |
| float mrmeshpy.Matrix3_unsigned_char.norm | ( | self | ) |
| int mrmeshpy.Matrix3_unsigned_char.normSq | ( | self | ) |
compute sum of squared matrix elements
|
static |
|
static |
|
static |
returns a matrix that scales uniformly
|
static |
returns a matrix that has its own scale along each axis
|
static |
| int mrmeshpy.Matrix3_unsigned_char.trace | ( | self | ) |
computes trace of the matrix
| Matrix3_unsigned_char mrmeshpy.Matrix3_unsigned_char.transposed | ( | self | ) |
computes transposed matrix
| Vector3_unsigned_char mrmeshpy.Matrix3_unsigned_char.x | ( | self | ) |
rows, identity matrix by default
| None mrmeshpy.Matrix3_unsigned_char.x | ( | self, | |
| Vector3_unsigned_char | arg1 ) |
|
static |
|
staticprotected |
|
staticprotected |
|
static |