diff --git a/cornucopia/fov.py b/cornucopia/fov.py index 2884031..bf42c21 100755 --- a/cornucopia/fov.py +++ b/cornucopia/fov.py @@ -162,7 +162,7 @@ def __init__(self, axis=0, negative=False, double=False, **kwargs): self.negative = ensure_list(negative, len(self.axis)) self.double = ensure_list(double, len(self.axis)) - def apply(self, x): + def xform(self, x): # this implementation is suboptimal. We should fuse all transpose # and all flips into a single "transpose + flip" operation so that # a single allocation happens. This will be fine for now.