C# Class Grasp.FunctionCalculator

A function-based calculation which applies to GraspRuntimes
Inheritance: ICalculator
Afficher le fichier Open project: bwatts/Grasp

Méthodes publiques

Méthode Description
ApplyCalculation ( GraspRuntime runtime ) : void

Applies the function to the specified runtime

FunctionCalculator ( Variable outputVariable, object>.Func function ) : System

Initializes a function calculator with the specified output variable and function

Method Details

ApplyCalculation() public méthode

Applies the function to the specified runtime
public ApplyCalculation ( GraspRuntime runtime ) : void
runtime GraspRuntime A runtime to which the function is applied
Résultat void

FunctionCalculator() public méthode

Initializes a function calculator with the specified output variable and function
public FunctionCalculator ( Variable outputVariable, object>.Func function ) : System
outputVariable Variable The variable to which the output of the specified function is assigned
function object>.Func The function which calculates the value to be assigned to the specified output variable
Résultat System