Skip to content

Commit 84c6845

Browse files
committed
update doc
1 parent 23fda42 commit 84c6845

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

cfgMST.m

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,21 @@
2424
% cfg.screen.monitorDistance
2525
% cfg.screen.monitorWidth
2626

27-
% Field of view in DEGREES OF VISUAL ANGLES
28-
2927
% fixation cross displacement in degrees of visual angles
30-
% this will also shift the whole FOV
28+
% this will also shift the whole FOV relative to the center of the screen
29+
% Note: negative values will move things to the left and up.
3130
cfg.fixation.xDisplacement = 0;
3231
cfg.fixation.yDisplacement = 0;
3332

3433
% determines position of the fixation cross on the right / left
3534
% should be a bit less than the: ( width of FOV ) / 2
36-
cfg.design.xDisplacementFixation = 5;
35+
cfg.design.xDisplacementFixation = 3;
3736

3837
% determines position of the dots on the left /
3938
% should be a bit less than the: ( width of FOV ) / 2
40-
cfg.design.xDisplacementAperture = 5;
39+
cfg.design.xDisplacementAperture = 7;
4140

4241
% determines the width of the dot circle
43-
cfg.aperture.width = 1;
42+
cfg.aperture.width = 7;
4443

4544
end

cfgMT.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@
3131
% cfg.screen.monitorWidth
3232

3333
% fixation cross displacement in degrees of visual angles
34-
%
35-
% cfg.fixation.xDisplacement = FIXME;
36-
% cfg.fixation.yDisplacement = FIXME;
34+
% this will also shift the whole FOV relative to the center of the screen
35+
% Note: negative values will move things to the left and up.
36+
37+
cfg.fixation.xDisplacement = 0;
38+
cfg.fixation.yDisplacement = 0;
3739

3840
end

0 commit comments

Comments
 (0)