Ejemplo n.º 1
0
 public async Task ResizePlotAsync(int pixelWidth, int pixelHeight, int resolution)
 {
     // This is safe to call from background thread
     if (_device != null)
     {
         await _plotManager.ResizeAsync(_device, pixelWidth, pixelHeight, resolution);
     }
 }
Ejemplo n.º 2
0
 public async Task ResizePlotAsync(int pixelWidth, int pixelHeight, int resolution)
 {
     await _plotManager.ResizeAsync(pixelWidth, pixelHeight, resolution);
 }