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); } }