コード例 #1
0
 /// <summary>
 /// Adds the specified <see cref="TouchEvent"/> to Gestureworks' processing pipeline; typically used for passing touch position information to
 /// Gestureworks as obtained from external sources (e.g. TUIO).
 /// </summary>
 /// <param name="touchEvent">The <see cref="TouchEvent"/> to pass to Gestureworks for touch processing.</param>
 public void AddEvent(TouchEvent touchEvent)
 {
     GwNative.addEvent(touchEvent);
 }
コード例 #2
0
ファイル: GwNative.cs プロジェクト: cassab/Decorato_Sketching
 internal static extern IntPtr addEvent(TouchEvent touchEvent);