ComputeValueFromStateT Delegate |
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 23.1.416.0 (23.1.416.0)
Syntaxpublic delegate T ComputeValueFromState<T>(
ITimeBasedState state
)
Public Delegate Function ComputeValueFromState(Of T) (
state As ITimeBasedState
) As T
generic<typename T>
public delegate T ComputeValueFromState(
ITimeBasedState^ state
)
type ComputeValueFromState =
delegate of
state : ITimeBasedState -> 'T
Parameters
- state
- Type: AGI.Foundation.CoordinatesITimeBasedState
The state to compute values from.
Type Parameters
- T
- The type of the computed value.
Return Value
Type:
TA value computed from the state.
RemarksEnsure 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