ATUAV_RT.EmdatProcessor.FixationEnd C# (CSharp) Method

FixationEnd() public method

public FixationEnd ( int time, int duration, int x, int y ) : void
time int
duration int
x int
y int
return void
        public void FixationEnd(int time, int duration, int x, int y)
        {
            SFDFixation fix = new SFDFixation();
            fix.Time = time;
            fix.Duration = duration;
            fix.X = x;
            fix.Y = y;

            lock (this)
            {
                if (collectingData)
                {
                    fixations.AddLast(fix);
                }
            }
        }