@@ -114,9 +114,9 @@ Changes in 1.2.x
114
114
>>> print(ax.viewLim)
115
115
Bbox('array([[ 0., 0.],\n [ 90., 90.]])')
116
116
117
- * One can now easily get a transform which goes from one transform's coordinate system
118
- to another, in an optimized way, using the new subtract method on a transform. For instance,
119
- to go from data coordinates to axes coordinates::
117
+ * One can now easily get a transform which goes from one transform's coordinate
118
+ system to another, in an optimized way, using the new subtract method on a
119
+ transform. For instance, to go from data coordinates to axes coordinates::
120
120
121
121
>>> import matplotlib.pyplot as plt
122
122
>>> ax = plt.axes()
@@ -126,9 +126,9 @@ Changes in 1.2.x
126
126
>>> print(data2ax.depth)
127
127
2
128
128
129
- for versions before 1.2 this could only be achieved in a sub-optimal way, using
130
- ``ax.transData + ax.transAxes.inverted() `` (depth is a new concept, but had it existed
131
- it would return 4 for this example).
129
+ for versions before 1.2 this could only be achieved in a sub-optimal way,
130
+ using ``ax.transData + ax.transAxes.inverted() `` (depth is a new concept,
131
+ but had it existed it would return 4 for this example).
132
132
133
133
* ``twinx `` and ``twiny `` now returns an instance of SubplotBase if
134
134
parent axes is an instance of SubplotBase.
@@ -141,6 +141,9 @@ Changes in 1.2.x
141
141
* :class: `~matplotlib.colors.ColorConverter `,
142
142
:class: `~matplotlib.colors.Colormap ` and
143
143
:class: `~matplotlib.colors.Normalize ` now subclasses ``object ``
144
+
145
+ * ContourSet instances no longer have a ``transform `` attribute. Instead,
146
+ access the transform with the ``get_transform `` method.
144
147
145
148
Changes in 1.1.x
146
149
================
0 commit comments