Click or drag to resize
DigitalRuneMatrix33D Methods

The Matrix33D type exposes the following members.

Methods
  NameDescription
Public methodAbsolute
Sets each matrix element to its absolute value.
Public methodStatic memberAbsolute(Matrix33D)
Returns a matrix with the absolute values of the elements of the given matrix.
Public methodStatic memberAdd
Adds two matrices.
Public methodStatic memberAreNumericallyEqual(Matrix33D, Matrix33D)
Determines whether two matrices are equal (regarding the tolerance EpsilonD).
Public methodStatic memberAreNumericallyEqual(Matrix33D, Matrix33D, Double)
Determines whether two matrices are equal (regarding a specific tolerance).
Public methodClampToZero
Clamps near-zero matrix elements to zero.
Public methodClampToZero(Double)
Clamps near-zero matrix elements to zero.
Public methodStatic memberClampToZero(Matrix33D)
Returns a matrix with the matrix elements clamped to the range [min, max].
Public methodStatic memberClampToZero(Matrix33D, Double)
Returns a matrix with the matrix elements clamped to the range [min, max].
Public methodStatic memberCreateRotation(QuaternionD)
Creates a rotation matrix from a unit quaternion.
Public methodStatic memberCreateRotation(Vector3D, Double)
Creates a rotation matrix from axis and angle.
Public methodStatic memberCreateRotationX
Creates a matrix that specifies a rotation around the x-axis.
Public methodStatic memberCreateRotationY
Creates a matrix that specifies a rotation around the y-axis.
Public methodStatic memberCreateRotationZ
Creates a matrix that specifies a rotation around the z-axis.
Public methodStatic memberCreateScale(Double)
Creates a uniform scaling matrix.
Public methodStatic memberCreateScale(Vector3D)
Creates a scaling matrix.
Public methodStatic memberCreateScale(Double, Double, Double)
Creates a scaling matrix.
Public methodStatic memberDivide
Divides a matrix by a scalar.
Public methodEquals(Object)
Indicates whether this instance and a specified object are equal.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(Matrix33D)
Indicates whether the current object is equal to another object of the same type.
Public methodGetColumn
Gets a column as Vector3D.
Public methodGetHashCode
Returns the hash code for this instance.
(Overrides ValueTypeGetHashCode.)
Public methodGetRow
Gets a row as Vector3D.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInvert
Inverts the matrix.
Public methodStatic memberMultiply(Double, Matrix33D)
Multiplies a matrix by a scalar.
Public methodStatic memberMultiply(Matrix33D, Matrix33D)
Multiplies two matrices.
Public methodStatic memberMultiply(Matrix33D, Vector3D)
Multiplies a matrix with a column vector.
Public methodStatic memberMultiplyTransposed
Multiplies the transposed of the given matrix with a column vector.
Public methodStatic memberNegate
Negates a matrix.
Public methodOrthogonalize
Re-orthogonalizes this instance.
Public methodSetColumn
Sets a column from a Vector3D.
Public methodSetRow
Sets a row from a Vector3D.
Public methodStatic memberSubtract
Subtracts two matrices.
Public methodToArray1D
Converts this matrix to an array of double values.
Public methodToArray2D
Converts this Matrix33D to a 2-dimensional double array.
Public methodToArrayJagged
Converts this Matrix33D to a jagged double array.
Public methodToList
Converts this matrix to a list of double values.
Public methodToMatrix33F
Converts this Matrix33D to Matrix33F.
Public methodToMatrixD
Converts this Matrix33D to MatrixD.
Public methodToString
Returns the string representation of this matrix.
(Overrides ValueTypeToString.)
Public methodToString(IFormatProvider)
Returns the string representation of this matrix using the specified culture-specific format information.
Public methodTranspose
Transposes this matrix.
Public methodTryInvert
Inverts the matrix if it is invertible.
Top
See Also