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