Files Classes Functions Hierarchy
00001 #ifndef D3MINCENTROID_H 00002 #define D3MINCENTROID_H 00003 00004 #include <typedefs.h> 00005 00006 // Brief: averages points and their radiuses to create a test 00007 // circle. If another mesh point lies inside the circle 00008 // then retessellate. 00009 // 00010 // Note: this can not be used recursively as it leads to infinite 00011 // recursion. 00012 class d3mincentroid : public d3minoperator 00013 { 00014 public: 00015 00016 d3mincentroid(d3tess & tess_); 00017 00018 boolc eval(uintc a, uintc b); 00019 00020 }; 00021 00022 00023 #endif 00024
1.5.8