/**
* VERSION: 0.1 (beta)
* DATE: 1/19/2010
* ACTIONSCRIPT VERSION: 3.0
* UPDATES AND DOCUMENTATION AT: http://www.GreenSock.com
**/
package com.greensock.motionPaths {
/**
* Constants for defining the direction in which to travel on a MotionPath (like CLOCKWISE, COUNTER_CLOCKWISE, SHORTEST,
etc.).
*
* Copyright 2011, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.
*
* @author Jack Doyle, jack@greensock.com
*/
public class Direction {
public static const CLOCKWISE:String="clockwise";
public static const COUNTER_CLOCKWISE:String="counterClockwise";
public static const SHORTEST:String="shortest";
}
}