示例#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;
 }