From 1d45d8ecb4633f07a0ff163255dbedc3c3a72ac8 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 24 Feb 2008 18:00:48 +0000 Subject: removed plane.h plane.cc --- src/math/plane.h | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/math/plane.h (limited to 'src/math/plane.h') diff --git a/src/math/plane.h b/src/math/plane.h deleted file mode 100644 index 39207b9..0000000 --- a/src/math/plane.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - common/plane.cc - This file is part of the Osirion project and is distributed under - the terms of the GNU General Public License version 2 -*/ - -#ifndef __INCLUDED_MATH_PLANE_H__ -#define __INCLUDED_MATH_PLANE_H__ - -// project headers -#include "math/vector3f.h" - -// C++ headers -#include - -namespace math { - -/// a plane in 3D space -class Plane { -public: - Plane(Vector3f const &a, Vector3f const &b, Vector3f const &c); - Plane(Vector3f const &p, Vector3f const &n); - -private: - // Point on the plane - Vector3f p0; - // Plane normal - Vector3f pn; -}; // class Plane - -} // namespace math - -#endif // __INCLUDED_MATH_PLANE_H__ -- cgit v1.2.3