#ifndef TETRAHEDRONTEST_H
#define TETRAHEDRONTEST_H

#include <gobj.h>

/*!
\brief Test both the tetrahedron and tetrahedrondisplay 
       classes.
*/
class tetrahedrontest
{
public:

  /** Graphics stream. */
  gobjContainer gX;

  void test01(int argc, char** argv);
  void test02(int argc, char** argv);

  /** Display the graphics in gX. */
  static void display01();

  /** ESC to quit program. */
  static void keyboard01(unsigned char key, int x, int y);

};




#endif



