#ifndef D2PARTITIONDRAW_H
#define D2PARTITIONDRAW_H

template< typename T >
class d2partitiondraw : public gobj
{
  T & hd;
public:

  d2partitiondraw(T & _hd)
    : hd(_hd) {}

  template< typename U>
  void translate( U const & x)
    { hd.translate(x); }

  void rotate(double const theta)
    { hd.rotate(theta); }

  void draw()
    { hd.draw(); }
};

#endif


