Configures 3D subplots # Input `row` -- number of rows in the subplot_3d grid `col` -- number of columns in the subplot_3d grid `index` -- activate current 3D subplot; **indices start at one** (1-based)
(&mut self, row: usize, col: usize, index: usize)
| 346 | /// * `col` -- number of columns in the subplot_3d grid |
| 347 | /// * `index` -- activate current 3D subplot; **indices start at one** (1-based) |
| 348 | pub fn set_subplot_3d(&mut self, row: usize, col: usize, index: usize) -> &mut Self { |
| 349 | write!(&mut self.buffer, "\nsubplot_3d({},{},{})\n", row, col, index).unwrap(); |
| 350 | self |
| 351 | } |
| 352 | |
| 353 | /// Configures subplots |
| 354 | /// |
no outgoing calls