IDrawingFactory.CreateMatrix

CreateMatrix(IMatrix)

Creates a new matrix with the same contents as the specified matrix.

public IMatrix CreateMatrix(IMatrix matrix)
ParameterTypeDescription
matrixIMatrixThe matrix to copy.

Return Value

The created IMatrix.

See Also


CreateMatrix(float, float, float, float, float, float)

Creates a new matrix with the specified elements.

public IMatrix CreateMatrix(float m11, float m12, float m21, float m22, float m31, float m32)
ParameterTypeDescription
m11SingleThe value in the first row and first column of the matrix.
m12SingleThe value in the first row and second column of the matrix.
m21SingleThe value in the second row and first column of the matrix.
m22SingleThe value in the second row and second column of the matrix.
m31SingleThe value in the third row and first column of the matrix.
m32SingleThe value in the third row and second column of the matrix.

Return Value

The created IMatrix.

See Also


CreateMatrix()

Creates a new identity matrix.

public IMatrix CreateMatrix()

Return Value

The created IMatrix.

See Also