Skip to content

Commit

Permalink
added a small number to benarys cross target size and 2nd x-coord to …
Browse files Browse the repository at this point in the history
…make sure that it is aligned at ppd=32
  • Loading branch information
LynnSchmittwilken committed Jul 25, 2022
1 parent e8abeaf commit 59af60f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stimuli/papers/domijan2015.py
Expand Up @@ -345,8 +345,8 @@ def white(height_px=80, ppd=PPD, height_deg=HEIGHT_DEG, pad=PAD):
def benary(height_px=100, ppd=PPD, height_deg=HEIGHT_DEG):
height_px, height_deg, ppd, conversion_fac = check_requirements(100, height_px, height_deg, ppd)
cross_size = np.array((30,)*4) * conversion_fac
target_size = np.array((11, 11)) * conversion_fac
target_posx = np.array((19, 70)) * conversion_fac
target_size = np.array((11.1, 11.1)) * conversion_fac # TODO: take out 0.1 (currently needed!)
target_posx = np.array((19, 70.1)) * conversion_fac # TODO: take out 0.1 (currently needed!)
target_posy = np.array((19, 30)) * conversion_fac

stim = illusions.benary_cross.benarys_cross(
Expand Down

0 comments on commit 59af60f

Please sign in to comment.