TransformationMatrix(Single, Single, Single, Single, Single, Single) Constructor
Creates a 3x2 matrix from the specified components.
Namespace: KGySoft.Drawing.ShapesAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
public TransformationMatrix(
float m11,
float m12,
float m21,
float m22,
float m31,
float m32
)
Public Sub New (
m11 As Single,
m12 As Single,
m21 As Single,
m22 As Single,
m31 As Single,
m32 As Single
)
public:
TransformationMatrix(
float m11,
float m12,
float m21,
float m22,
float m31,
float m32
)
new :
m11 : float32 *
m12 : float32 *
m21 : float32 *
m22 : float32 *
m31 : float32 *
m32 : float32 -> TransformationMatrix
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.