Click or drag to resize

CurveBaseResolutionFunction Delegate

This function has to provide the points that are necessary between (x1,y1) and (x2,y2) to get a smooth curve.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public delegate int ResolutionFunction(
	double x1,
	double y1,
	double x2,
	double y2
)

Parameters

x1  Double
The x-coordinate of the start point.
y1  Double
The y-coordinate of the start point.
x2  Double
The x-coordinate of the end point.
y2  Double
The y-coordinate of the end point.

Return Value

Int32
The number of intermediate points required for a smooth curve segment.
See Also