Version

Search Results

Matrix Class Properties

Public Properties

Clone Method (Matrix)

Creates a copy of this matrix. Syntax Return Value Duplicated matrix.

Identity Property

Gets an identity matrix. Syntax

IsIdentity Property

Gets a boolean value indicating whether this matrix is an identity matrix. Syntax

M11 Property

Gets or sets value at the first row, first column of the matrix. Syntax

M12 Property

Gets or sets value at the first row, second column of the matrix. Syntax

M21 Property

Gets or sets value at the second row, first column of the matrix. Syntax

M22 Property

Gets or sets value at the second row, second column of the matrix. Syntax

Multiply(Matrix) Method

Multiplies this matrix by the matrix specified in the matrix parameter, by prepending the specified matrix. Syntax Parameters matrix The matrix by which this matrix is to be multiplied.

Multiply(Matrix,MatrixOrder) Method

Multiplies this matrix by the matrix specified in the matrix parameter. Syntax Parameters matrix The matrix by which this matrix is to be multiplied.order The multiplication order.