Path2DQuadraticCurveTo 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 public void QuadraticCurveTo(
double cpx,
double cpy,
double x,
double y
)
Public Sub QuadraticCurveTo (
cpx As Double,
cpy As Double,
x As Double,
y As Double
)
public:
virtual void QuadraticCurveTo(
double cpx,
double cpy,
double x,
double y
) sealed
abstract QuadraticCurveTo :
cpx : float *
cpy : float *
x : float *
y : float -> unit
override 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.
Implements
ICanvasPathMethodsQuadraticCurveTo(Double, Double, Double, Double)See Also