(self)
| 2302 | return np.concatenate((x_points, y_points), 1) |
| 2303 | |
| 2304 | def inverted(self): |
| 2305 | # docstring inherited |
| 2306 | return BlendedGenericTransform(self._x.inverted(), self._y.inverted()) |
| 2307 | |
| 2308 | def get_affine(self): |
| 2309 | # docstring inherited |
nothing calls this directly
no test coverage detected