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); } }
public async Task ResizePlotAsync(int pixelWidth, int pixelHeight, int resolution) { await _plotManager.ResizeAsync(pixelWidth, pixelHeight, resolution); }