Sets maximum z
(&mut self, zmax: f64)
| 612 | |
| 613 | /// Sets maximum z |
| 614 | pub fn set_zmax(&mut self, zmax: f64) -> &mut Self { |
| 615 | write!(&mut self.buffer, "plt.gca().set_zlim(zmax={})\n", zmax).unwrap(); |
| 616 | self |
| 617 | } |
| 618 | |
| 619 | /// Sets x-range (i.e. limits) |
| 620 | pub fn set_xrange(&mut self, xmin: f64, xmax: f64) -> &mut Self { |
no outgoing calls