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

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