#ifndef POLYTOPESD2LINKEDTEST_H
#define POLYTOPESD2LINKEDTEST_H

#include <gobj.h>

class polytopesD2linkedtest
{
  /** Global graphics stream. */
  gobjContainer xGraphics;
public:

  /** Default keyboard handler - ESC to quit. */
  static void keyboard01(unsigned char key, int x, int y);
  /** Displays the gobj::global with double buffering. */
  static void display01();

  static void test01();


  /** Display a house. */
  void test02(int argc, char** argv);
  /** Display the letter H. */
  void test03(int argc, char** argv);

  /** Simple test to display a two region half space partition. */
  void test04(int argc, char** argv);
};

#endif


