()
| 135 | |
| 136 | @image_comparison(['skew_axes.png'], remove_text=True, style='_classic_test') |
| 137 | def test_set_line_coll_dash_image(): |
| 138 | fig = plt.figure() |
| 139 | ax = fig.add_subplot(1, 1, 1, projection='skewx') |
| 140 | ax.set_xlim(-50, 50) |
| 141 | ax.set_ylim(50, -50) |
| 142 | ax.grid(True) |
| 143 | |
| 144 | # An example of a slanted line at constant X |
| 145 | ax.axvline(0, color='b') |
| 146 | |
| 147 | |
| 148 | @image_comparison(['skew_rects.png'], remove_text=True, style='_classic_test', |