Example #1
0
 public Div(bool bounded, DivTypes divType, Interpolation interpolation)
 {
     this.DivType       = divType;
     this.Interpolation = interpolation;
     this.bounded       = bounded;
 }
Example #2
0
 public Div(DivTypes divType, Interpolation interpolation)
 {
     this.DivType       = divType;
     this.Interpolation = interpolation;
     this.bounded       = false;
 }