コード例 #1
0
 private async void InitAll()
 {
     this.plotter = new Plotter(this);
     await plotter.Init();
     await plotter.PenUp();
     this.painter = new Painter(plotter, this);
     this.textPainter = new TextPainter(plotter, new FontEnRu(), 35, 70, 15);
     this.textPainterSmall = new TextPainter(plotter, new FontEnRu(), 22, 45, 5);
 }
コード例 #2
0
ファイル: Painter.cs プロジェクト: Alias007/InternetOfThings
 public Painter(Plotter plotter, ILogger logger)
 {
     this.plotter = plotter;
     this.logger = logger;
 }
コード例 #3
0
 public Painter(Plotter plotter, ILogger logger)
 {
     this.plotter = plotter;
     this.logger  = logger;
 }