File tree 2 files changed +2
-3
lines changed 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ Changes in 1.2.x
116
116
>>> print(data2ax.depth)
117
117
2
118
118
119
- for versions before 2.0 this could only be achieved in a sub-optimal way, using
119
+ for versions before 1.2 this could only be achieved in a sub-optimal way, using
120
120
``ax.transData + ax.transAxes.inverted() `` (depth is a new concept, but had it existed
121
121
it would return 4 for this example).
122
122
Original file line number Diff line number Diff line change @@ -1058,7 +1058,7 @@ class Transform(TransformNode):
1058
1058
"""
1059
1059
1060
1060
has_inverse = False
1061
- """True if this transform as a corresponding inverse transform."""
1061
+ """True if this transform has a corresponding inverse transform."""
1062
1062
1063
1063
is_separable = False
1064
1064
"""True if this transform is separable in the x- and y- dimensions."""
@@ -2223,7 +2223,6 @@ def _iter_break_from_left_to_right(self):
2223
2223
yield lh_compliment , rh_compliment + self ._b
2224
2224
for lh_compliment , rh_compliment in self ._b ._iter_break_from_left_to_right ():
2225
2225
yield self ._a + lh_compliment , rh_compliment
2226
-
2227
2226
2228
2227
def __repr__ (self ):
2229
2228
return "CompositeAffine2D(%r, %r)" % (self ._a , self ._b )
You can’t perform that action at this time.
0 commit comments