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