#ifndef POINTSURFACETEST_H
#define POINTSURFACETEST_H

#include <gobj.h>

/*!
\brief Test pointsurface class.
*/
class pointsurfacetest
{
public:

  /** Global graphics container. */
  gobjContainer xGraphics;

  pointsurfacetest() 
    : xGraphics(true) {}

  /** Displaying a 2D oval using 2D input. */
  int test01(int argc, char** argv);

  /** Displaying the surface of a sphere using 3D input. */
  int test02(int argc, char** argv);

  /** Displaying a parallelogram with points. */
  int test03(int argc, char** argv);

};


#endif



