[]
Creates a skew matrix from the specified angles in radians.
public static Matrix CreateSkew(double radiansX, double radiansY)
Public Shared Function CreateSkew(radiansX As Double, radiansY As Double) As Matrix
Type | Name | Description |
---|---|---|
double | radiansX | The X angle, in radians. |
double | radiansY | The Y angle, in radians. |
Type | Description |
---|---|
Matrix | The skew matrix. |
Creates a skew matrix from the specified angles in radians and a center point.
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
Type | Name | Description |
---|---|---|
double | radiansX | The X angle, in radians. |
double | radiansY | The Y angle, in radians. |
PointF | centerPoint | The center point. |
Type | Description |
---|---|
Matrix | The skew matrix. |
Creates a skew matrix from the specified angles in radians and a center point.
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
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. |
Type | Description |
---|---|
Matrix | The skew matrix. |