SvgGraphicsFillBezier Method

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

Definition

Namespace: SMath.Drawing
Assembly: SMath.Drawing (in SMath.Drawing.dll) Version: 1.4.0.0
C#
public void FillBezier(
	ColorBrush brush,
	PointF point1,
	PointF point2,
	PointF point3,
	PointF point4
)

Parameters

brush  ColorBrush
ColorBrush that determines the color of the fill.
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

IGraphicsFillBezier(ColorBrush, PointF, PointF, PointF, PointF)

See Also