#ifndef D3MINCIRCLE_H
#define D3MINCIRCLE_H

#include <d3minoperator.h>
#include <point.h>
#include <typedefs.h>


typedef point3<double> pt3;

class d3mincircle : public d3minoperator
{
  boolc testifinsidetriangle
  ( 
    pt3 const & x, 
    pt3 const & p0, 
    pt3 const & p1, 
    pt3 const & p2
  ) const;

public:

  d3mincircle(d3tess & tess_);

  boolc eval(uintc a, uintc b);

};



#endif


