Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzamuto committed May 8, 2023
1 parent d13fb46 commit cbdcba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zetastitcher/fuse/fuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def squircle_alpha(height, width):
b = math.ceil(height / 2)
grid = np.vstack(np.meshgrid(np.linspace(0, b - 1, b),
np.linspace(0, a - 1, a))).reshape(2, -1).T
grid = grid.astype(np.int)
grid = grid.astype(np.int64)
N = max(a, b)
ps = np.logspace(np.log10(2), np.log10(50), N) # exponents
# ps = np.ones(N) * 2
Expand Down

0 comments on commit cbdcba5

Please sign in to comment.