From 37de94f181b9a97eebd21460f4df63ae4a0750f8 Mon Sep 17 00:00:00 2001 From: balbasty Date: Fri, 19 Apr 2024 14:23:50 +0100 Subject: [PATCH] FIX(Rotate90): oops old method name, should not have merged yet --- cornucopia/fov.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.