Closed wiheto closed 2 years ago
For the user's sake we should have consistent input for view and hemisphere.
Currently working on #31 and noticed some weirdness in user interface. For a 2x2 view plotting L/R hemispheres form L/R views.
At the moment:
view = [['L' 'R'], ['R', 'L']] hemisphere = [['L', 'R'], ['L', 'R']]
and
view = [['LR'], ['RL']] hemisphere = [['LR'], ['LR']]
will both lead to an error
At present what is needed to get the above to work is:
view = [['LR'], ['RL']] hemisphere = [['L', 'R'], ['L', 'R']]
Both the invalid examples should work.
_get_frame_input
moderate (cause modifications to _get_frame_input could change other functions)
Fixed
For the user's sake we should have consistent input for view and hemisphere.
Currently working on #31 and noticed some weirdness in user interface. For a 2x2 view plotting L/R hemispheres form L/R views.
At the moment:
and
will both lead to an error
At present what is needed to get the above to work is:
Desired outcome:
Both the invalid examples should work.
Function that needs modifying:
_get_frame_input
Difficulty:
moderate (cause modifications to _get_frame_input could change other functions)