Rotation

Rotation(double)

Erstellt eine Matrix für einen gegebenen Rotationswinkel.

public static Matrix Rotation(double alpha)
ParameterTypBeschreibung
alphaDoubleRotationswinkel im Bogenmaß.

Rückgabewert

Transformationsmatrix.

Beispiele

Matrix m = Matrix.Rotation(Math.PI / 2);

Siehe auch


Rotation(Rotation)

Erstellt eine Matrix für eine gegebene Rotation.

public static Matrix Rotation(Rotation rotation)
ParameterTypBeschreibung
rotationRotationDrehung. Gültige Werte sind: None, on90, on180, on270

Rückgabewert

Matrix mit Drehung.

Siehe auch