[]
Creates a skew matrix from the specified angles in radians.
public static Matrix CreateSkew(double radiansX, double radiansY)
| 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)
| 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)
| 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. |