#ifndef HALFSPACED2TEST_H
#define HALFSPACED2TEST_H

/*!
\brief 2D half space testing.
*/
class halfspaceD2test
{
public:

  /** Basic 2D half-space test. */
  static void test01();
  /** Minimize a point to a the half-space line. */
  static void test02();

  /** Clip some lines with the half-space. */
  static int unittest01();

};


#endif



