Click or drag to resize

Matrix3x3FromRotationRadian Method

Gets a transformation matrix by specifying rotation (translation is 0, shear is 0 and scale is 1).

Namespace: Altaxo.Geometry
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Matrix3x3 FromRotationRadian(
	double angleX,
	double angleY,
	double angleZ
)

Parameters

angleX  Double
The rotation around x axis in radian.
angleY  Double
The rotation around y axis in radian.
angleZ  Double
The rotation around z axis in radian.

Return Value

Matrix3x3
The transformation matrix.
See Also