Matrix

Matrix()

Konstruktor erstellt eine standardmäßige 1-zu-1-Matrix: [ ABCDEF ] = [ 1, 0, 0, 1, 0, 0]

public Matrix()

Beispiele

Matrix m = new Matrix();

Siehe auch


Matrix(double[])

Konstruktor akzeptiert eine Matrix mit folgender Array-Darstellung: [ ABCDEF ]

public Matrix(double[] matrixArray)
ParameterTypBeschreibung
matrixArrayDouble[]Matrix-Datenarray.

Beispiele

double[] c = new double[] { 1, 0, 0, 1, 10, 20 };
Matrix m = new Matrix(c);

Siehe auch


Matrix(float[])

Konstruktor akzeptiert eine Matrix mit folgender Array-Darstellung: [ ABCDEF ]

public Matrix(float[] matrixArray)
ParameterTypBeschreibung
matrixArraySingle[]Matrix-Datenarray.

Siehe auch


Matrix(Matrix)

Konstruktor akzeptiert eine Matrix, um eine Kopie zu erstellen

public Matrix(Matrix matrix)
ParameterTypBeschreibung
matrixMatrixMatrix-Objekt.

Siehe auch


Matrix(double, double, double, double, double, double)

Initialisiert Transformationsmatrix mit angegebenen Koeffizienten.

public Matrix(double a, double b, double c, double d, double e, double f)
ParameterTypBeschreibung
aDoubleEin Matrixwert.
bDoubleB-Matrixwert.
cDoubleC-Matrixwert.
dDoubleD-Matrixwert.
eDoubleE-Matrixwert.
fDoubleF-Matrixwert.

Beispiele

Matrix m = new Matrix(1, 0, 0, 1, 3, 3);

Siehe auch