quadraticBezierTo
Contents
[
Hide
]quadraticBezierTo(Point2D.Float point1, Point2D.Float point2) method
Adds quadratic Bezier curve at the end the path
Parameters
| Name | Type | Description |
|---|---|---|
| point1 | Point2D.Float | Direction point |
| point2 | Point2D.Float | End point |
Returns
void
quadraticBezierTo(float x1, float y1, float x2, float y2) method
Adds quadratic Bezier curve at the end the path
Parameters
| Name | Type | Description |
|---|---|---|
| x1 | float | X coordinate of direction point |
| y1 | float | Y coordinate of direction point |
| x2 | float | X coordinate of end point |
| y2 | float | Y coordinate of end point |
Returns
void
quadraticBezierTo(Point2D.Float point1, Point2D.Float point2, long index) method
Adds quadratic Bezier curve to the specified place of the path
Parameters
| Name | Type | Description |
|---|---|---|
| point1 | Point2D.Float | Direction point |
| point2 | Point2D.Float | End point |
| index | long | Index of segment in PathData |
Returns
void
Exception
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | Segment index is out of PathData range |
quadraticBezierTo(float x1, float y1, float x2, float y2, long index) method
Adds quadratic Bezier curve to the specified place of the path
Parameters
| Name | Type | Description |
|---|---|---|
| x1 | float | X coordinate of direction point |
| y1 | float | Y coordinate of direction point |
| x2 | float | X coordinate of end point |
| y2 | float | Y coordinate of end point |
| index | long | Index of segment in PathData |
Returns
void
Exception
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | Segment index is out of PathData range |