Creates a new matrix with a skew
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static IMatrix FromSkew(
float skewX,
float skewY
)
Public Shared Function FromSkew (
skewX As Single,
skewY As Single
) As IMatrix
static member FromSkew :
skewX : float32 *
skewY : float32 -> IMatrix
Parameters
- skewX
- Type: SystemSingle
Amount to skew along the X axis, 1.0 does not skew - skewY
- Type: SystemSingle
Amount to skew along the Y axis, 1.0 does not skew
Return Value
Type:
IMatrixA new skew matrix
See Also