ICanvasPathMethodsQuadraticCurveTo Method |
Adds a quadratic Bézier curve to the current path.
Namespace: Aspose.Html.Dom.CanvasAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax void QuadraticCurveTo(
double cpx,
double cpy,
double x,
double y
)
Sub QuadraticCurveTo (
cpx As Double,
cpy As Double,
x As Double,
y As Double
)
void QuadraticCurveTo(
double cpx,
double cpy,
double x,
double y
)
abstract QuadraticCurveTo :
cpx : float *
cpy : float *
x : float *
y : float -> unit
Parameters
- cpx
- Type: SystemDouble
The x axis of the coordinate for the control point. - cpy
- Type: SystemDouble
The y axis of the coordinate for the control point. - x
- Type: SystemDouble
The x axis of the coordinate for the end point. - y
- Type: SystemDouble
The y axis of the coordinate for the end point.
See Also