ATUAV_RT.ConsolePrinter.Print C# (CSharp) Method

Print() protected method

Writes gaze data information to console.
protected Print ( GazeDataItem gazePoint ) : void
gazePoint GazeDataItem GazeDataItem to write to console
return void
        protected void Print(GazeDataItem gazePoint)
        {
            int ms = (int)syncManager.RemoteToLocal(gazePoint.TimeStamp);
            Console.WriteLine("GazePoint [" + ms + "] - (" + gazePoint.LeftEyePosition3D.X + ", " + gazePoint.LeftEyePosition3D.Y + ")");
        }

Same methods

ConsolePrinter::Print ( int time, int duration, int x, int y ) : void