Esempio n. 1
0
 private static extern void HandTracker_stopGestureDetection(IntPtr objectHandler, GestureData.GestureType type);
Esempio n. 2
0
 public void StopGestureDetection(GestureData.GestureType type)
 {
     HandTracker_stopGestureDetection(this.Handle, type);
 }
Esempio n. 3
0
 private static extern NiTE.Status HandTracker_startGestureDetection(
     IntPtr objectHandler, 
     GestureData.GestureType type);
Esempio n. 4
0
 public NiTE.Status StartGestureDetection(GestureData.GestureType type)
 {
     return HandTracker_startGestureDetection(this.Handle, type);
 }