Click or drag to resize

Matrix3x3FromScaleShearRotationDegree Method

Gets a transformation matrix by specifying translation, rotation, shear and scale.

Namespace: Altaxo.Geometry
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Matrix3x3 FromScaleShearRotationDegree(
	double scaleX,
	double scaleY,
	double scaleZ,
	double shearX,
	double shearY,
	double shearZ,
	double angleX,
	double angleY,
	double angleZ
)

Parameters

scaleX  Double
The scale value x.
scaleY  Double
The scale value y.
scaleZ  Double
The scale value z.
shearX  Double
The shear value x.
shearY  Double
The shear value y.
shearZ  Double
The shear value z.
angleX  Double
The rotation around x axis in degrees.
angleY  Double
The rotation around y axis in degrees
angleZ  Double
The rotation around z axis in degrees

Return Value

Matrix3x3
The transformation matrix. A point transformed with this matrix is first translated, then rotated, then sheared, then scaled.
See Also