00001 //----------------------------------------------------------------------------- 00002 // smootherType.h 00003 //----------------------------------------------------------------------------- 00004 00005 #ifndef _SmootherType_h_ 00006 #define _SmootherType_h_ 00007 00008 enum SmootherType 00009 { 00010 SMOOTHER_NONE = -1, 00011 SMOOTHER_SUCCESSIVE_NODE_PAIR, 00012 SMOOTHER_RANDOM_NODE_PAIR, 00013 SMOOTHER_SUCCESSIVE_AND_RANDOM, 00014 SMOOTHER_TRISECTION, 00015 NUM_OF_SMOOTHER_TYPES 00016 }; 00017 00018 #endif