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
)
Sub Create (
xx As Single,
yx As Single,
xy As Single,
yy As Single,
x0 As Single,
y0 As Single
)
abstract Create :
xx : float32 *
yx : float32 *
xy : float32 *
yy : float32 *
x0 : float32 *
y0 : float32 -> unit
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