Example #1
0
    public IntegrateDataPlank(Plank p)
    {
        evalResult = new DerivativeRotation();
        a          = new DerivativeRotation();
        b          = new DerivativeRotation();
        c          = new DerivativeRotation();
        d          = new DerivativeRotation();

        this.p = p;
    }
Example #2
0
 public override void stepD()
 {
     d = evalResult;
 }
Example #3
0
 public override void stepC()
 {
     c = evalResult;
 }
Example #4
0
 public override void stepB()
 {
     b = evalResult;
 }
Example #5
0
 public override void stepA()
 {
     a = evalResult;
 }