IDeviceCubicBezierTo Method |
Appends a cubic Bézier curve to the current path. The curve extends from the current point to the point pt3,
using pt1 and pt2 as the Bézier control points. The new current point is pt3.
Namespace: Aspose.Html.RenderingAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxvoid CubicBezierTo(
PointF pt1,
PointF pt2,
PointF pt3
)
Sub CubicBezierTo (
pt1 As PointF,
pt2 As PointF,
pt3 As PointF
)
void CubicBezierTo(
PointF pt1,
PointF pt2,
PointF pt3
)
abstract CubicBezierTo :
pt1 : PointF *
pt2 : PointF *
pt3 : PointF -> unit
Parameters
- pt1
- Type: System.DrawingPointF
Coordinates of first point - pt2
- Type: System.DrawingPointF
Coordinates of second point - pt3
- Type: System.DrawingPointF
Coordinates of third point
See Also