Click or drag to resize
Pdftools logo

AffineTransformSkew Method

Skew.

Skew is specified by [1 tan a tan b 1 0 0], which skews the x axis by an angle a and the y axis by an angle b.

Namespace: PdfTools.FourHeights.PdfToolbox.Geometry.Real
Assembly: PdfTools.FourHeights.PdfToolbox (in PdfTools.FourHeights.PdfToolbox.dll) Version: 4.4.1+cd45f416896d630bcd3719f4b2cba7920f2790da
Syntax
C#
public void Skew(
	double alpha,
	double beta
)

Parameters

alpha  Double
angle a in degrees
beta  Double
angle b in degrees
Exceptions
ExceptionCondition
InvalidOperationExceptionIf the affine transform is singular, e.g. default initialized. (Use Identity as an initial value.)
ArgumentExceptionif any of the given angles is too close to 90 + k*180 degrees for k = ..., -2, -1, 0, 1, 2, ...
See Also