Esempio n. 1
0
 public HumidityChartState(float xValue, float yValue, HCStateType type, Flowsheet flowsheet)
 {
     this.flowsheet = flowsheet;
     variables      = new PointF(xValue, yValue);
     this.type      = type;
 }
Esempio n. 2
0
 public HumidityChartState(HCStateType type, Flowsheet flowsheet)
 {
     this.flowsheet = flowsheet;
     variables      = new PointF(0, 0);
     this.type      = type;
 }