Ejemplo n.º 1
0
 public Spline(BRKBase rk, double e)
 {
     this.n  = 1;
     this.rk = rk;
     this.rk.Init(e);
 }
Ejemplo n.º 2
0
 public Spline(int n, BRKBase rk, double e)
 {
     this.n  = n;
     this.rk = rk;
     this.rk.Init(e);
 }