#ifndef MESHPATCHTEST_H
#define MESHPATCHTEST_H


/*!
\brief Mesh patch testing and other testing of patch related work.
*/
class meshpatchtest
{
public:

  /** Evaluate a point on a patch by entering u,v. */
  void test01();
  /** Display a point grid with bilinear patches as points.*/
  void test02(int argc, char** argv);
  /** Uniform subdivision.*/
  void test03(int argc, char** argv);
  /** Display the point grid with triangles. */
  void test04(int argc, char** argv);
};


#endif



