C# 클래스 Grasp.FunctionCalculator

A function-based calculation which applies to GraspRuntimes
상속: ICalculator
파일 보기 프로젝트 열기: bwatts/Grasp

공개 메소드들

메소드 설명
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

메소드 상세

ApplyCalculation() 공개 메소드

Applies the function to the specified runtime
public ApplyCalculation ( GraspRuntime runtime ) : void
runtime GraspRuntime A runtime to which the function is applied
리턴 void

FunctionCalculator() 공개 메소드

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
리턴 System