MCPcopy Create free account
hub / github.com/cpmech/plotpy / set_subplot_3d

Method set_subplot_3d

src/plot.rs:348–351  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 ///

Callers 4

subplot_3d_worksFunction · 0.80
test_subplot_3dFunction · 0.80
test_plot_3dFunction · 0.80

Calls

no outgoing calls

Tested by 4

subplot_3d_worksFunction · 0.64
test_subplot_3dFunction · 0.64
test_plot_3dFunction · 0.64