Method | Description | |
---|---|---|
FixationEnd ( int time, int duration, int x, int y ) : void |
Collects fixation events
|
|
ProcessWindow ( ) : void |
Prints the accumulated fixation and gaze data events without dropping intermittent events.
|
|
ProcessWindow ( bool keepData ) : void |
Prints the accumulated fixation and gaze data events without dropping intermittent events.
|
|
StartWindow ( ) : void |
Start collecting data in a new window. Clears any existing data.
|
|
StopWindow ( ) : void |
Stops collecting data. Does not clear existing data.
|
|
WindowingConsolePrinter ( SyncManager syncManager ) : System |
Method | Description | |
---|---|---|
GazeDataReceivedSynchronized ( object sender, GazeDataEventArgs e ) : void |
Collects gaze point events
|
|
GazeDataReceivedSynchronized ( object sender, GazeDataItem gazePoint ) : void |
Collects gaze point events
|
Method | Description | |
---|---|---|
PrintData ( ) : void |
Private non-threadsafe method for printing data to console.
|
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 |
return | void |
protected GazeDataReceivedSynchronized ( object sender, GazeDataEventArgs e ) : void | ||
sender | object | |
e | GazeDataEventArgs | Contains gaze data item |
return | void |
protected GazeDataReceivedSynchronized ( object sender, GazeDataItem gazePoint ) : void | ||
sender | object | |
gazePoint | GazeDataItem | |
return | void |
public ProcessWindow ( bool keepData ) : void | ||
keepData | bool | If true, collected data is kept for next window. Otherwise data is cleared. |
return | void |
public WindowingConsolePrinter ( SyncManager syncManager ) : System | ||
syncManager | SyncManager | |
return | System |