XColorMatrix constructor.
Syntax

[C#]

XColorMatrix();
XColorMatrix(double[,] array2d);
XColorMatrix(double[] array);
XColorMatrix(double[][] arrayJagged);
XColorMatrix(ColorMatrix matrix);

[Visual Basic]

Sub New()
Sub New(array2d As Double[,])
Sub New(array As Double())
Sub New(arrayJagged As Double()())
Sub New(matrix As ColorMatrix)
Params
Name Description
array2d A two dimensional array of values used to populate the matrix.
array An array of values used to populate the matrix.
arrayJagged An array of array of values used to populate the matrix.
matrix A ColorMatrix used to populate the matrix.
Notes

Create a new matrix. When using the default constructor, the matrix will be initialized to the identity representation, which results in no change when applied to a pixel.

Example

None.