GridSurface.EvaluateCore Method

Evaluates the surface at the specified point.

Definition

Namespace: Numerics.NET.Curves.Surfaces
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
C#
protected abstract double EvaluateCore(
	ReadOnlySpan<double> point
)

Parameters

point  ReadOnlySpan<Double>
A read-only span representing the coordinates of the point.

Return Value

Double
The value of the surface at the specified point.

Remarks

The length of point must equal Dimension.

Exceptions

ArgumentException The length of point does not equal Dimension.

See Also