예제 #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);
 }
예제 #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);
 }
예제 #3
0
 public HotPlatePrinter(Core.HotPlate hotPlate, float threshold)
 {
     this.hotPlate  = hotPlate;
     this.threshold = threshold;
     size           = hotPlate.Size;
 }
예제 #4
0
 public Main()
 {
     InitializeComponent();
     hotPlate = new Core.HotPlate(6);
     PrintHotPlate();
 }
예제 #5
0
 public HotPlateIterator(Core.HotPlate hotPlate)
 {
     this.hotPlate = hotPlate;
 }
예제 #6
0
 public Main()
 {
     InitializeComponent();
     hotPlate = new Core.HotPlate(6);
     PrintHotPlate();
 }
예제 #7
0
 public HotPlatePrinter(Core.HotPlate hotPlate, float threshold)
 {
     this.hotPlate = hotPlate;
     this.threshold = threshold;
     size = hotPlate.Size;
 }
예제 #8
0
 public HotPlateIterator(Core.HotPlate hotPlate)
 {
     this.hotPlate = hotPlate;
 }