Click or drag to resize

ComputeValueFromStateT Delegate

A callback to compute some value from a ITimeBasedState.

Namespace:  AGI.Foundation.Geometry
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public delegate T ComputeValueFromState<T>(
	ITimeBasedState state
)

Parameters

state
Type: AGI.Foundation.CoordinatesITimeBasedState
The state to compute values from.

Type Parameters

T
The type of the computed value.

Return Value

Type: T
A value computed from the state.
Remarks
Ensure that this callback is thread-safe and does not close over any instances of objects that may cause problems with cloning such as evaluators.
See Also