TransformationMatrix(Single, Single, Single, Single, Single, Single) Constructor

Creates a 3x2 matrix from the specified components.

Definition

Namespace: KGySoft.Drawing.Shapes
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public TransformationMatrix(
	float m11,
	float m12,
	float m21,
	float m22,
	float m31,
	float m32
)

Parameters

m11  Single
The value to assign to the first element in the first row.
m12  Single
The value to assign to the second element in the first row.
m21  Single
The value to assign to the first element in the second row.
m22  Single
The value to assign to the second element in the second row.
m31  Single
The value to assign to the first element in the third row.
m32  Single
The value to assign to the second element in the third row.

See Also