00001 /* 00002 Copyright (C) 2005-2006 Feeling Software Inc. 00003 MIT License: http://www.opensource.org/licenses/mit-license.php 00004 */ 00005 00011 #ifndef _FM_INTERPOLATION_H_ 00012 #define _FM_INTERPOLATION_H_ 00013 00019 namespace FMInterpolation 00020 { 00022 enum Interpolation 00023 { 00024 NONE = 0, 00025 LINEAR, 00026 BEZIER, 00028 UNKNOWN, 00029 DEFAULT = NONE, 00030 }; 00031 }; 00032 00033 #endif // _FM_INTERPOLATION_H_