Click or drag to resize

RhinoMathIntegrate Method (FuncObject, Int32, Double, Double, Double, Object, Surface, Double, Double, CancellationToken, Double)

[Missing <summary> documentation for "M:Rhino.RhinoMath.Integrate(System.Func{System.Object,System.Int32,System.Double,System.Double,System.Double},System.Object,Rhino.Geometry.Surface,System.Double,System.Double,System.Threading.CancellationToken,System.Double@)"]

Namespace:  Rhino
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntax
public static double Integrate(
	Func<Object, int, double, double, double> integrandFunction,
	Object context,
	Surface surface,
	double relativeTolerance,
	double absoluteTolerance,
	CancellationToken cancellationToken,
	out double errorBound
)

Parameters

integrandFunction
Type: SystemFuncObject, Int32, Double, Double, Double
context
Type: SystemObject
surface
Type: Rhino.GeometrySurface
relativeTolerance
Type: SystemDouble
absoluteTolerance
Type: SystemDouble
cancellationToken
Type: System.ThreadingCancellationToken
Token used to cancel the calculation. Cancellation is cooperative: it is checked each time the integrand is evaluated, and a canceled calculation returns double.NaN.
errorBound
Type: SystemDouble

Return Value

Type: Double

[Missing <returns> documentation for "M:Rhino.RhinoMath.Integrate(System.Func{System.Object,System.Int32,System.Double,System.Double,System.Double},System.Object,Rhino.Geometry.Surface,System.Double,System.Double,System.Threading.CancellationToken,System.Double@)"]

See Also