ATUAV_RT.WindowingConsolePrinter.FixationEnd C# (CSharp) 메소드

FixationEnd() 공개 메소드

Collects fixation events
public FixationEnd ( int time, int duration, int x, int y ) : void
time int Start time of fixation
duration int Duration of fixation
x int Fixation Y position
y int Fixation X position
리턴 void
        public override void FixationEnd(int time, int duration, int x, int y)
        {
            lock (this)
            {
                if (collectingData)
                {
                    SFDFixation fixation = new SFDFixation();
                    fixation.Time = time;
                    fixation.Duration = duration;
                    fixation.X = x;
                    fixation.Y = y;

                    events.AddLast(new EyetrackerEvent(fixation));
                }
            }
        }