public HSectionMap(HSectionDim dim, String dimName, String dimUnit) { this.dim = dim; this.dimName = dimName; this.dimUnit = dimUnit; this.dimExists = false; }
private float getMapValue(HSectionDim dim) { #if DEBUG Log.Notice(this.GetType().Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name); #endif for (int a = 0; a < ParametrsMap.Count; a++) { if (dim == ParametrsMap[a].dim) { return(ParametrsMap[a].dimValue); } } return(0); }