コード例 #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;
 }