ATUAV_RT.ConsolePrinter.Print C# (CSharp) Method

Print() protected method

Writes fixation information to console.
protected Print ( int time, int duration, int x, int y ) : void
time int Start time of fixation
duration int Duration of fixation
x int X coordinate of fixation
y int Y coordinate of fixation
return void
        protected void Print(int time, int duration, int x, int y)
        {
            Console.WriteLine("Fixation [" + time + "] for " + duration + "ms at (" + x + ", " + y + ")");
        }

Same methods

ConsolePrinter::Print ( GazeDataItem gazePoint ) : void