Example #1
0
        public override void EyeInput(IFixationData fixation)
        {
            latestFixation = fixation;

            scrollManager.UpdateScroll(fixation.GetFixationLocation());
            zoomForm.Fixation(fixation.GetFixationLocation());
        }
        public override void EyeInput(IFixationData fixation)
        {
            latestFixation = fixation;

            scrollManager.UpdateScroll(fixation.GetFixationLocation());
            zoomForm.Fixation(fixation.GetFixationLocation());
        }
Example #3
0
        public void EyeInput(IFixationData fixation)
        {
            //Sending the fixation data to each of the hotspots
            foreach (StateHotspot sh in stateHotspots)
            {
                sh.Fixation(fixation.GetFixationLocation());
            }

            //Passing fixation data to the current state
            currentState.EyeInput(fixation);
        }
 public override void EyeInput(IFixationData fixation)
 {
 }
 public override void EyeInput(IFixationData fixation)
 {
 }
Example #6
0
 public abstract void EyeInput(IFixationData fixation);