|
| 1 | +``Tick.set_label1`` and ``Tick.set_label2`` |
| 2 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 3 | +... are removed. Calling these methods from third-party code usually had no |
| 4 | +effect, as the labels are overwritten at draw time by the tick formatter. |
| 5 | + |
| 6 | + |
| 7 | +Functions in ``mpl_toolkits.mplot3d.proj3d`` |
| 8 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 9 | + |
| 10 | +The function ``transform`` is just an alias for ``proj_transform``, |
| 11 | +use the latter instead. |
| 12 | + |
| 13 | +The following functions were either unused (so no longer required in Matplotlib) |
| 14 | +or considered private. |
| 15 | + |
| 16 | +* ``ortho_transformation`` |
| 17 | +* ``persp_transformation`` |
| 18 | +* ``proj_points`` |
| 19 | +* ``proj_trans_points`` |
| 20 | +* ``rot_x`` |
| 21 | +* ``rotation_about_vector`` |
| 22 | +* ``view_transformation`` |
| 23 | + |
| 24 | + |
| 25 | +Arguments other than ``renderer`` to ``get_tightbbox`` |
| 26 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 27 | + |
| 28 | +... are keyword-only arguments. This is for consistency and that |
| 29 | +different classes have different additional arguments. |
| 30 | + |
| 31 | + |
| 32 | +Method parameters renamed to match base classes |
| 33 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 34 | + |
| 35 | +The only parameter of ``transform_affine`` and ``transform_non_affine`` in ``Transform`` subclasses is renamed |
| 36 | +to *values*. |
| 37 | + |
| 38 | +The *points* parameter of ``transforms.IdentityTransform.transform`` is renamed to *values*. |
| 39 | + |
| 40 | +The *trans* parameter of ``table.Cell.set_transform`` is renamed to *t* consistently with |
| 41 | +`.Artist.set_transform`. |
| 42 | + |
| 43 | +The *clippath* parameters of ``axis.Axis.set_clip_path`` and ``axis.Tick.set_clip_path`` are |
| 44 | +renamed to *path* consistently with `.Artist.set_clip_path`. |
| 45 | + |
| 46 | +The *s* parameter of ``images.NonUniformImage.set_filternorm`` is renamed to *filternorm* |
| 47 | +consistently with ``_ImageBase.set_filternorm``. |
| 48 | + |
| 49 | +The *s* parameter of ``images.NonUniformImage.set_filterrad`` is renamed to *filterrad* |
| 50 | +consistently with ``_ImageBase.set_filterrad``. |
| 51 | + |
| 52 | +The only parameter of ``Annotation.contains`` and ``Legend.contains`` is renamed to *mouseevent* |
| 53 | +consistently with `.Artist.contains`. |
| 54 | + |
| 55 | + |
| 56 | +*numdecs* parameter and attribute of ``LogLocator`` |
| 57 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 58 | +... are removed without replacement, because they had no effect. |
0 commit comments