com.sparshui.common.TouchState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmol Show documentation
Show all versions of jmol Show documentation
Jmol: an open-source Java viewer for chemical structures in 3D
package com.sparshui.common;
/**
* Defines the types of touches that can ocurr in sparsh-UI:
* Birth, Move, and Death.
*
* @author Tony Ross
*
*/
public class TouchState {
/**
*
*/
public final static int BIRTH = 0;
/**
*
*/
public final static int DEATH = 1;
/**
*
*/
public final static int MOVE = 2;
public final static int CLICK = 3;
}