blob: 21172a498e6e0ff7b5fbb7674b2bb192aac222d6 (
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
|
/*
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
*/
// project headers
#include "math/plane.h"
// C++ headers
#include <cmath>
namespace math {
Plane::Plane(Vector3f const &a, Vector3f const &b, Vector3f const &c)
{
p0 = a;
// FIXME calculate plane normal
}
Plane::Plane(Vector3f const &p, Vector3f const &n)
{
p0 = p;
pn = n;
}
} // namespace math
|