From b6eed4468e562bc5a4621c1ea3f8e0bc331cf48e Mon Sep 17 00:00:00 2001 From: Marshall Perrin Date: Tue, 17 Nov 2015 12:54:05 -0500 Subject: [PATCH] fix erroneous issue number in comment text to #111 --- poppy/zernike.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poppy/zernike.py b/poppy/zernike.py index 257cf89b..9946d582 100644 --- a/poppy/zernike.py +++ b/poppy/zernike.py @@ -364,7 +364,7 @@ def hex_aperture(npix=1024, rho=None, theta=None, vertical=False): y = rho * np.sin(theta) else: # the coordinates here must be consistent with those used elsewhere in poppy - # see issue #119 + # see issue #111 x_ = (np.arange(npix, dtype=np.float64) - (npix - 1) / 2.) / (npix / 2.) x, y = np.meshgrid(x_, x_)