Skip to content

Commit 3d07836

Browse files
committed
make image asymmetric
1 parent 13a3b55 commit 3d07836

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def get_images(parity, dtype):
4545
# numpy array for top-level functions that directly expect it
4646
g = grid_2d(size)
4747
im_np = (
48-
2 * gaussian_2d(size, sigma=size / 5)
48+
2 * gaussian_2d(size, mu=(size / 10, size / 10), sigma=size / 5)
4949
+ np.sin(7 * np.pi * g["x"]) * np.cos(3 * np.pi * g["y"])
5050
).astype(dtype)[np.newaxis]
5151

0 commit comments

Comments
 (0)