Grid
```rust
let mut grid = Grid::new();
grid.push(0, 0, plot1);
grid.push(0, 1, plot2);
grid.push(1, 0..2, plot3);
grid.draw_to_file("grid.png", (800, 600)).unwrap();
```
Last updated
```rust
let mut grid = Grid::new();
grid.push(0, 0, plot1);
grid.push(0, 1, plot2);
grid.push(1, 0..2, plot3);
grid.draw_to_file("grid.png", (800, 600)).unwrap();
```
Last updated