Files Classes Functions Hierarchy
00001 #ifndef D3MINCENTROID2_H 00002 #define D3MINCENTROID2_H 00003 00004 #include <typedefs.h> 00005 00006 // Brief: create a test circle by averageing points and 00007 // selecting the smallest distance from center 00008 // to points as the radius. 00009 // 00010 // This is designed to be used recursively. 00011 // 00012 // It is a bad approximator, but is of 00013 // interest because it does work. 00014 class d3mincentroid2 : public d3minoperator 00015 { 00016 public: 00017 00018 d3mincentroid2(d3tess & tess_); 00019 00020 boolc eval(uintc a, uintc b); 00021 00022 }; 00023 00024 00025 #endif 00026 00027
1.5.8