Esempio n. 1
0
 private static void Initialize()
 {
     hotPlate         = new Core.HotPlate(size);
     hotPlatePrinter  = new HotPlatePrinter(hotPlate, threshold);
     hotPlateIterator = new HotPlateIterator(hotPlate);
     hotPlatePrinter.Print(turn);
     Thread.Sleep(delay);
 }
Esempio n. 2
0
 private static void Initialize()
 {
     hotPlate = new Core.HotPlate(size);
     hotPlatePrinter = new HotPlatePrinter(hotPlate, threshold);
     hotPlateIterator = new HotPlateIterator(hotPlate);
     hotPlatePrinter.Print(turn);
     Thread.Sleep(delay);
 }
Esempio n. 3
0
 public HotPlatePrinter(Core.HotPlate hotPlate, float threshold)
 {
     this.hotPlate  = hotPlate;
     this.threshold = threshold;
     size           = hotPlate.Size;
 }
Esempio n. 4
0
 public Main()
 {
     InitializeComponent();
     hotPlate = new Core.HotPlate(6);
     PrintHotPlate();
 }
 public HotPlateIterator(Core.HotPlate hotPlate)
 {
     this.hotPlate = hotPlate;
 }
Esempio n. 6
0
 public Main()
 {
     InitializeComponent();
     hotPlate = new Core.HotPlate(6);
     PrintHotPlate();
 }
Esempio n. 7
0
 public HotPlatePrinter(Core.HotPlate hotPlate, float threshold)
 {
     this.hotPlate = hotPlate;
     this.threshold = threshold;
     size = hotPlate.Size;
 }
Esempio n. 8
0
 public HotPlateIterator(Core.HotPlate hotPlate)
 {
     this.hotPlate = hotPlate;
 }