Sets maximum y
(&mut self, ymax: f64)
| 600 | |
| 601 | /// Sets maximum y |
| 602 | pub fn set_ymax(&mut self, ymax: f64) -> &mut Self { |
| 603 | write!(&mut self.buffer, "plt.gca().set_ylim(top={})\n", ymax).unwrap(); |
| 604 | self |
| 605 | } |
| 606 | |
| 607 | /// Sets minimum z |
| 608 | pub fn set_zmin(&mut self, zmin: f64) -> &mut Self { |
no outgoing calls