コード例 #1
0
ファイル: Window1.xaml.cs プロジェクト: Faham/emophiz
 void _tracker_XConfigurationChanged(object sender, XConfigurationChangedEventArgs e)
 {
     Console.WriteLine("XConfig changed notification!");
     UpdateScreen();
 }
コード例 #2
0
ファイル: Window1.xaml.cs プロジェクト: shimins/Eyetracking
 void _tracker_XConfigurationChanged(object sender, XConfigurationChangedEventArgs e)
 {
     Console.WriteLine("XConfig changed notification!");
     UpdateScreen();
 }
コード例 #3
0
ファイル: EyetrackerNode.cs プロジェクト: vnmone/vvvv-sdk
 void FEyetracker_XConfigurationChanged(object sender, XConfigurationChangedEventArgs e)
 {
     FLowerLeft[0]  = new Vector3D(e.Configuration.LowerLeft.X, e.Configuration.LowerLeft.Y, e.Configuration.LowerLeft.Z) * 0.1;
     FUpperLeft[0]  = new Vector3D(e.Configuration.UpperLeft.X, e.Configuration.UpperLeft.Y, e.Configuration.UpperLeft.Z) * 0.1;
     FUpperRight[0] = new Vector3D(e.Configuration.UpperRight.X, e.Configuration.UpperRight.Y, e.Configuration.UpperRight.Z) * 0.1;
 }