Sets inverted x-axis
(&mut self)
| 1065 | |
| 1066 | /// Sets inverted x-axis |
| 1067 | pub fn set_inv_x(&mut self) -> &mut Self { |
| 1068 | write!(&mut self.buffer, "plt.gca().invert_xaxis()\n").unwrap(); |
| 1069 | self |
| 1070 | } |
| 1071 | |
| 1072 | /// Sets inverted y-axis |
| 1073 | pub fn set_inv_y(&mut self) -> &mut Self { |
no outgoing calls