예제 #1
0
 public override double CalcOutputDelta(double inputDelta, double otherAxis)
 {
     Vector2 lnx = new Vector2(inputDelta, otherAxis);
     lnx.Log();
     return (lnx.X + this.lnFactor * Math.Abs(inputDelta) + this.offset);
 }