@@ -114,9 +114,9 @@ Changes in 1.2.x
114114 >>> print(ax.viewLim)
115115 Bbox('array([[ 0., 0.],\n [ 90., 90.]])')
116116
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::
120120
121121 >>> import matplotlib.pyplot as plt
122122 >>> ax = plt.axes()
@@ -126,9 +126,9 @@ Changes in 1.2.x
126126 >>> print(data2ax.depth)
127127 2
128128
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).
132132
133133* ``twinx `` and ``twiny `` now returns an instance of SubplotBase if
134134 parent axes is an instance of SubplotBase.
@@ -141,6 +141,9 @@ Changes in 1.2.x
141141* :class: `~matplotlib.colors.ColorConverter `,
142142 :class: `~matplotlib.colors.Colormap ` and
143143 :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.
144147
145148Changes in 1.1.x
146149================
0 commit comments