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