#ifndef D3MINCENTROID2_H
#define D3MINCENTROID2_H

#include <typedefs.h>

//  Brief: create a test circle by averageing points and
//         selecting the smallest distance from center 
//         to points as the radius.
//
//         This is designed to be used recursively.
//
//         It is a bad approximator, but is of
//         interest because it does work.
class d3mincentroid2 : public d3minoperator
{
public:

  d3mincentroid2(d3tess & tess_);

  boolc eval(uintc a, uintc b);

};


#endif



