View Javadoc

1   package org.ximtec.igesture.io.tuio.server;
2   
3   /**
4    * 
5    * @author Bjorn Puype, bpuype@gmail.com
6    *
7    */
8   public interface TuioToIGestureInterface {
9   	
10  	/** 
11  	 * When only gesture data of the objects is sent to the tuio client, the client must be informed of all 
12  	 * objects that are present at the beginning of the gesture. This way the client will know the begin position 
13  	 * of the gesture.
14  	 */
15  	public abstract void sendVirtualAdd();
16  	/**
17  	 * When only gesture data of the objects is sent to the tuio client, the client must be informed of the removal
18  	 * of all present objects. This way the client will know the end postion of the gesture.
19  	 */
20  	public abstract void sendVirtualRemove();
21  
22  }