Click or drag to resize

CardinalSplineToBezierSegmentConverterClosedCardinalSplineToBezierSegments Method

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

Namespace: Altaxo.Geometry
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static PointD2D[] ClosedCardinalSplineToBezierSegments(
	PointD2D[] points,
	int count,
	double tension
)

Parameters

points  PointD2D
The control points of the closed cardinal spline curve.
count  Int32
Number of control points of the closed cardinal spline curve.
tension  Double
The tension of the cardinal spline.

Return Value

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