[]
Transforms a point by this matrix.
public PointF Transform(PointF point)
Public Function Transform(point As PointF) As PointF
| Type | Name | Description |
|---|---|---|
| PointF | point | The original point to apply the transformation. |
| Type | Description |
|---|---|
| PointF | The transformed point. |
Transforms a point by this matrix.
public PointF Transform(float x, float y)
Public Function Transform(x As Single, y As Single) As PointF
| Type | Name | Description |
|---|---|---|
| float | x | X-coordinate of the original point. |
| float | y | Y-coordinate of the original point. |
| Type | Description |
|---|---|
| PointF | The transformed point. |
Transforms a point by this matrix.
public (double, double) Transform(double x, double y)
Public Function Transform(x As Double, y As Double) As (Double, Double)
| Type | Name | Description |
|---|---|---|
| double | x | X-coordinate of the original point. |
| double | y | Y-coordinate of the original point. |
| Type | Description |
|---|---|
| (double, double) | A pair of transformed X and Y coordinates. |
Transforms an array of points by this matrix.
public void Transform(PointF[] points, int startIndex, int count)
Public Sub Transform(points As PointF(), startIndex As Integer, count As Integer)
| Type | Name | Description |
|---|---|---|
| PointF[] | points | |
| int | startIndex | |
| int | count |