blob: 39207b9097b0301607f0f150dfad75d23300dbce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
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 <iostream>
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__
|