SvgGraphicsDrawBezier Method

Draws a Bézier spline defined by four PointF structures.

Definition

Namespace: SMath.Drawing
Assembly: SMath.Drawing (in SMath.Drawing.dll) Version: 1.2.0
C#
public void DrawBezier(
	ColorPen pen,
	PointF point1,
	PointF point2,
	PointF point3,
	PointF point4
)

Parameters

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.

Implements

IGraphicsDrawBezier(ColorPen, PointF, PointF, PointF, PointF)

See Also