Skip to content

Commit

Permalink
FIX(Rotate90): oops old method name, should not have merged yet
Browse files Browse the repository at this point in the history
  • Loading branch information
balbasty committed Apr 19, 2024
1 parent d792d02 commit 37de94f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cornucopia/fov.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 37de94f

Please sign in to comment.