#ifndef PLANETEST_H
#define PLANETEST_H


/*!
\brief Testing plane class.
*/
class planetest
{
public:

  /** Construct a plane through three points. */
  static void test01(int argc, char** argv);
  /** Intersection of two planes. */
  static void test02(int argc, char** argv);
  /** Given input file with planes write output file
      with intersecting line. 

\verbatim
  Example 
      $./main ... in=file1.txt out=file2.txt

  File Format
      Input file
      P1.x P1.y P1.z P1.d
      P2.x P2.y P2.z P2.d
      Output file
      0 or 1
      A.x A.y A.z
      B.x B.y B.z
\endverbatim
  */
  static void test03(int argc, char** argv);


};


#endif



