| EvaluatorGroupParameterizeTParameter1, TResult, TResultDerivative Method (MotionEvaluatorTResult, TResultDerivative, IEvaluatorParameterTParameter1, ParameterAction) | 
 
            Parameterizes an evaluator with one parameter.
            
 
    Namespace: 
   AGI.Foundation
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic ParameterizedMotionEvaluatorWithDerivativeType1<TParameter1, TResult, TResultDerivative> Parameterize<TParameter1, TResult, TResultDerivative>(
	MotionEvaluator<TResult, TResultDerivative> evaluatorToParameterize,
	IEvaluatorParameter<TParameter1> parameter1,
	ParameterAction parameterAction
)
Public Function Parameterize(Of TParameter1, TResult, TResultDerivative) ( 
	evaluatorToParameterize As MotionEvaluator(Of TResult, TResultDerivative),
	parameter1 As IEvaluatorParameter(Of TParameter1),
	parameterAction As ParameterAction
) As ParameterizedMotionEvaluatorWithDerivativeType1(Of TParameter1, TResult, TResultDerivative)
public:
generic<typename TParameter1, typename TResult, typename TResultDerivative>
ParameterizedMotionEvaluatorWithDerivativeType1<TParameter1, TResult, TResultDerivative>^ Parameterize(
	MotionEvaluator<TResult, TResultDerivative>^ evaluatorToParameterize, 
	IEvaluatorParameter<TParameter1>^ parameter1, 
	ParameterAction parameterAction
)
member Parameterize : 
        evaluatorToParameterize : MotionEvaluator<'TResult, 'TResultDerivative> * 
        parameter1 : IEvaluatorParameter<'TParameter1> * 
        parameterAction : ParameterAction -> ParameterizedMotionEvaluatorWithDerivativeType1<'TParameter1, 'TResult, 'TResultDerivative> 
Parameters
- evaluatorToParameterize
- Type: AGI.FoundationMotionEvaluatorTResult, TResultDerivative
 The evaluator to parameterize.
- parameter1
- Type: AGI.Foundation.InfrastructureIEvaluatorParameterTParameter1
 The value of the first parameter.
- parameterAction
- Type: AGI.Foundation.InfrastructureParameterAction
 Indicates whether an exception should be thrown if any of the specified parameters are not actually
            parameters to the evaluatorToParameterize.
Type Parameters
- TParameter1
- The type of the first parameter.
- TResult
- The type of the result of evaluating the evaluator.
- TResultDerivative
- The type of the derivatives.
Return Value
Type: 
ParameterizedMotionEvaluatorWithDerivativeType1TParameter1, 
TResult, 
TResultDerivativeAn evaluator that can be evaluated with the given parameters.
 Exceptions
Exceptions See Also
See Also