chenn
2025-04-19 96095f8ac4b464540cd2c0bd7308916a137c5041
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DPumpHydr.OpenFwUI.Volute
{
    public class GlobalParas
    {
        public static string RootTopoShapeName = "Volute";
 
        public static string ThicknessBodyShapeName = "ThicknessBody";
        public static string WaterBodyShapeName = "WaterSolid";
        public static string BuildSectShapeName (int index)
        {
            return string.Format("SectShape_{0}", index);// theSectionParam.Index);
        }
        public static  System.Drawing.Color WaterBodyColor = System.Drawing.Color.FromArgb(0, 139, 139);
        public static System.Drawing.Color WaterBoudaryColor = System.Drawing.Color.FromArgb(0, 0 , 205);
        public static System.Drawing.Color ThicknessBodyColor = System.Drawing.Color.FromArgb(0, 0 ,205);
    }
}