create_matrix method
Contents
[
Hide
]create_matrix
Creates a new identity matrix.
Returns
The created IMatrix
.
def create_matrix(self):
...
create_matrix
Creates a new matrix with the same contents as the specified matrix.
Returns
The created IMatrix
.
def create_matrix(self, matrix):
...
Parameter | Type | Description |
---|---|---|
matrix | IMatrix | The matrix to copy. |
create_matrix
Creates a new matrix with the specified elements.
Returns
The created IMatrix
.
def create_matrix(self, m11, m12, m21, m22, m31, m32):
...
Parameter | Type | Description |
---|---|---|
m11 | float | The value in the first row and first column of the matrix. |
m12 | float | The value in the first row and second column of the matrix. |
m21 | float | The value in the second row and first column of the matrix. |
m22 | float | The value in the second row and second column of the matrix. |
m31 | float | The value in the third row and first column of the matrix. |
m32 | float | The value in the third row and second column of the matrix. |
See Also
- module
aspose.svg.drawing
- class
IDrawingFactory
- class
IMatrix