[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.Matrix.CreateSkew

CreateSkew Method

CreateSkew(double, double)

Creates a skew matrix from the specified angles in radians.

Declaration
public static Matrix CreateSkew(double radiansX, double radiansY)
Public Shared Function CreateSkew(radiansX As Double, radiansY As Double) As Matrix
Parameters
Type Name Description
double radiansX

The X angle, in radians.

double radiansY

The Y angle, in radians.

Returns
Type Description
Matrix

The skew matrix.

CreateSkew(double, double, PointF)

Creates a skew matrix from the specified angles in radians and a center point.

Declaration
public static Matrix CreateSkew(double radiansX, double radiansY, PointF centerPoint)
Public Shared Function CreateSkew(radiansX As Double, radiansY As Double, centerPoint As PointF) As Matrix
Parameters
Type Name Description
double radiansX

The X angle, in radians.

double radiansY

The Y angle, in radians.

PointF centerPoint

The center point.

Returns
Type Description
Matrix

The skew matrix.

CreateSkew(double, double, double, double)

Creates a skew matrix from the specified angles in radians and a center point.

Declaration
public static Matrix CreateSkew(double radiansX, double radiansY, double cx, double cy)
Public Shared Function CreateSkew(radiansX As Double, radiansY As Double, cx As Double, cy As Double) As Matrix
Parameters
Type Name Description
double radiansX

The X angle, in radians.

double radiansY

The Y angle, in radians.

double cx

X-coordinate of the center offset.

double cy

Y-coordinate of the center offset.

Returns
Type Description
Matrix

The skew matrix.