#ifndef TRIANGLETEST_H
#define TRIANGLETEST_H

#include <gobj.h>

/*!
\brief Test both the triange and triangledisplay classes.
*/
class triangletest
{
public:

  /** Graphics stream. */
  gobjContainer gX;

  /** Display all the triangle properties. */
  void test01(int argc, char** argv);
  /** Display point triangle properties. */
  void test02(int argc, char** argv);
  /** Test triangle3D that it displays as the 2D counterpart. */
  void test03(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



