Home | History | Annotate | Download | only in tweenengine
      1 package aurelienribon.tweenengine;
      2 
      3 import aurelienribon.tweenengine.paths.CatmullRom;
      4 import aurelienribon.tweenengine.paths.Linear;
      5 
      6 /**
      7  * Collection of built-in paths.
      8  *
      9  * @author Aurelien Ribon | http://www.aurelienribon.com/
     10  */
     11 public interface TweenPaths {
     12 	public static final Linear linear = new Linear();
     13 	public static final CatmullRom catmullRom = new CatmullRom();
     14 }
     15