Click or drag to resize

CurveBaseGetCurvePoints Method

Get curve points to draw an interpolation curve between the abscissa values xlo and xhi. It calls the virtual methods MpCurveBase::GetXOfU() and GetYOfU() to obtain the interpolation values. Note, that before method DrawCurve() can be called the method Interpolate() must have been called. Otherwise, not interpolation is available.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void GetCurvePoints(
	double xlo,
	double xhi,
	CurveBaseResolutionFunction getresolution,
	CurveBasePointSink setpoint
)

Parameters

xlo  Double
Lower bound of the drawing range.
xhi  Double
Upper bound of the drawing range.
getresolution  CurveBaseResolutionFunction
A delegate that must provide the points necessary to draw a smooth curve between to points.
setpoint  CurveBasePointSink
A delegate which is called with each calculated point. Can be used to draw the curve.
See Also