예제 #1
0
파일: Div.cs 프로젝트: Netkidxp/HopeCFD
 public Div(bool bounded, DivTypes divType, Interpolation interpolation)
 {
     this.DivType       = divType;
     this.Interpolation = interpolation;
     this.bounded       = bounded;
 }
예제 #2
0
파일: Div.cs 프로젝트: Netkidxp/HopeCFD
 public Div(DivTypes divType, Interpolation interpolation)
 {
     this.DivType       = divType;
     this.Interpolation = interpolation;
     this.bounded       = false;
 }