[]
Applies the skew transformation.
public Matrix Skew(double radiansX, double radiansY)
Public Function Skew(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. |
Applies the skew transformation that is offset by a given center point.
public Matrix Skew(double radiansX, double radiansY, PointF centerPoint)
Public Function Skew(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. |
Applies the skew transformation that is offset by a given center point.
public Matrix Skew(double radiansX, double radiansY, double cx, double cy)
Public Function Skew(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. |