Last updated 1 year ago
```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(); ```