quadraticBezierTo
quadraticBezierTo(Point2D.Float point1, Point2D.Float point2) function
Adds quadratic Bezier curve at the end the path
Parameters
Name | Type | Description |
---|
point1 | Point2D.Float | Direction point |
point2 | Point2D.Float | End point |
quadraticBezierTo(float x1, float y1, float x2, float y2) function
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 |
quadraticBezierTo(Point2D.Float point1, Point2D.Float point2, long index) function
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 |
Error
Error | Condition |
---|
ArgumentOutOfRangeException | Segment index is out of PathData range |
quadraticBezierTo(float x1, float y1, float x2, float y2, long index) function
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 |
Error
Error | Condition |
---|
ArgumentOutOfRangeException | Segment index is out of PathData range |