SvgGraphicsDrawBezier Method
Draws a Bézier spline defined by four PointF structures.
Namespace: SMath.DrawingAssembly: SMath.Drawing (in SMath.Drawing.dll) Version: 1.2.0
public void DrawBezier(
ColorPen pen,
PointF point1,
PointF point2,
PointF point3,
PointF point4
)
Public Sub DrawBezier (
pen As ColorPen,
point1 As PointF,
point2 As PointF,
point3 As PointF,
point4 As PointF
)
public:
virtual void DrawBezier(
ColorPen^ pen,
PointF point1,
PointF point2,
PointF point3,
PointF point4
) sealed
abstract DrawBezier :
pen : ColorPen *
point1 : PointF *
point2 : PointF *
point3 : PointF *
point4 : PointF -> unit
override DrawBezier :
pen : ColorPen *
point1 : PointF *
point2 : PointF *
point3 : PointF *
point4 : PointF -> unit
- pen ColorPen
- ColorPen that determines the color and width of the curve.
- point1 PointF
- PointF structure that represents the starting point of the curve.
- point2 PointF
- PointF structure that represents the first control point for the curve.
- point3 PointF
- PointF structure that represents the second control point for the curve.
- point4 PointF
- PointF structure that represents the ending point of the curve.
IGraphicsDrawBezier(ColorPen, PointF, PointF, PointF, PointF)