ComputeValueFromStateT Delegate |
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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.
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