Click or drag to resize

GdiExtensionMethodsClosedCardinalSplineToBezierSegments(PointF, Int32, Single) Method

Converts a closed cardinal spline, given by the points in points, to Bezier segments.

Namespace: Altaxo.Graph.Gdi
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static PointF[] ClosedCardinalSplineToBezierSegments(
	PointF[] points,
	int count,
	float tension
)

Parameters

points  PointF
The control points of the closed cardinal spline curve.
count  Int32
Number of control points of the closed cardinal spline curve.
tension  Single
The tension of the cardinal spline.

Return Value

PointF
Bezier segments that constitute the closed curve.
Remarks
Original name in Wine source: GdipAddPathClosedCurve2
See Also