@@ -2123,16 +2123,13 @@ class BlendedGenericTransform(_BlendedMixin, Transform):
2123
2123
2124
2124
def __init__ (self , x_transform , y_transform , ** kwargs ):
2125
2125
"""
2126
- Create a new "blended" transform using *x_transform* to
2127
- transform the *x*-axis and *y_transform* to transform the
2128
- *y*-axis.
2126
+ Create a new "blended" transform using *x_transform* to transform the
2127
+ *x*-axis and *y_transform* to transform the *y*-axis.
2129
2128
2130
2129
You will generally not call this constructor directly but use the
2131
2130
`blended_transform_factory` function instead, which can determine
2132
2131
automatically which kind of blended transform to create.
2133
2132
"""
2134
- # Here we ask: "Does it blend?"
2135
-
2136
2133
Transform .__init__ (self , ** kwargs )
2137
2134
self ._x = x_transform
2138
2135
self ._y = y_transform
@@ -2217,12 +2214,10 @@ class BlendedAffine2D(_BlendedMixin, Affine2DBase):
2217
2214
2218
2215
def __init__ (self , x_transform , y_transform , ** kwargs ):
2219
2216
"""
2220
- Create a new "blended" transform using *x_transform* to
2221
- transform the *x*-axis and *y_transform* to transform the
2222
- *y*-axis.
2217
+ Create a new "blended" transform using *x_transform* to transform the
2218
+ *x*-axis and *y_transform* to transform the *y*-axis.
2223
2219
2224
- Both *x_transform* and *y_transform* must be 2D affine
2225
- transforms.
2220
+ Both *x_transform* and *y_transform* must be 2D affine transforms.
2226
2221
2227
2222
You will generally not call this constructor directly but use the
2228
2223
`blended_transform_factory` function instead, which can determine
0 commit comments