Click or drag to resize

MatrixIHandlerCreate Method (Single, Single, Single, Single, Single, Single)

Creates a new matrix with the specified components

Namespace:  Eto.Drawing
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
void Create(
	float xx,
	float yx,
	float xy,
	float yy,
	float x0,
	float y0
)

Parameters

xx
Type: SystemSingle
Xx component of the matrix (scaleX)
yx
Type: SystemSingle
Yx component of the matrix
xy
Type: SystemSingle
Xy component of the matrix
yy
Type: SystemSingle
Yy component of the matrix (scaleY)
x0
Type: SystemSingle
X0 component of the matrix (translateX)
y0
Type: SystemSingle
Y0 component of the matrix (translateY)
Remarks
The components of the matrix are defined as:

| xx xy 0 | | yx yy 0 | | x0 y0 1 |

See Also