#ifndef D2SIMPLEXSEPARATEAXIS_H
#define D2SIMPLEXSEPARATEAXIS_H

#include <d2simplex.h>

/*!
\brief Simplex intersection test.
*/
class d2simplexSeparateAxis : public d2simplex
{
public:

  /** Do the two simplexes intersect? */
  bool const intersects(d2simplex const & s2) const;

  /** If one simplex sees the other there is no intersection. */
  bool const sees(d2simplex const & s2) const;

};


#endif




