00001 /* 00002 Copyright (C) 2005-2007 Feeling Software Inc. 00003 Portions of the code are: 00004 Copyright (C) 2005-2007 Sony Computer Entertainment America 00005 00006 MIT License: http://www.opensource.org/licenses/mit-license.php 00007 */ 00008 00014 #ifndef _FM_INTERPOLATION_H_ 00015 #define _FM_INTERPOLATION_H_ 00016 00022 namespace FMInterpolation 00023 { 00025 enum Interpolation 00026 { 00027 NONE = 0, 00028 LINEAR, 00029 BEZIER, 00031 UNKNOWN, 00032 DEFAULT = NONE, 00033 }; 00034 }; 00035 00036 #endif // _FM_INTERPOLATION_H_