#ifndef D3MINCENTROID_H
#define D3MINCENTROID_H

#include <typedefs.h>

//  Brief:  averages points and their radiuses to create a test
//          circle.  If another mesh point lies inside the circle
//          then retessellate.
//
//          Note: this can not be used recursively as it leads to infinite
//          recursion.
class d3mincentroid : public d3minoperator
{
public:

  d3mincentroid(d3tess & tess_);

  boolc eval(uintc a, uintc b);

};


#endif


