#ifndef D3MESHPARTITIONDRAW_H
#define D3MESHPARTITIONDRAW_H


#include <gobj.h>
#include <d3marchdisp.h>
#include <d3tess.h>
#include <d3tessdraw.h>
#include <d3meshpartition.h>

typedef point2<double> const pt2c;



class d3meshpartitiondraw : public gobj
{
  d3meshpartition & mp;
public:

  d3tessdraw * meshdraw;

  d3meshpartitiondraw(d3meshpartition & _mp );

  void rotate(double const theta);

  void translate( pt2c & x);

  void draw();

};


#endif



