コード例 #1
0
ファイル: CustomFunctions.cs プロジェクト: ninalinzhiyun/VB3
        // Declare a function that takes a variable number of arguments
        public static double WindO_comp(double windDirection, double windMagnitude, double beachOrientation)
        {
            WindComponents wndCmp    = new WindComponents(windMagnitude, windDirection, beachOrientation);
            double         dblRetVal = wndCmp.dblVcomp;

            return(dblRetVal);
        }
コード例 #2
0
ファイル: CustomFunctions.cs プロジェクト: wrbrooks/VB3
 // Declare a function that takes a variable number of arguments
 public static double WindO_comp(double windDirection, double windMagnitude, double beachOrientation)
 {
     WindComponents wndCmp = new WindComponents(windMagnitude, windDirection, beachOrientation);
     double dblRetVal = wndCmp.dblVcomp;
     return dblRetVal;
 }