Esempio n. 1
0
 public void CopyParamsTo(IInterpParams child)
 {
     child.ET_left    = this.ET_left;
     child.ET_right   = this.ET_right;
     child.InterpType = this.InterpType;
 }
Esempio n. 2
0
 public void CopyParamsFrom(IInterpParams parent)
 {
     this.ET_left    = parent.ET_left;
     this.ET_right   = parent.ET_right;
     this.InterpType = parent.InterpType;
 }