1 | #ifndef _Plane3_H__
|
---|
2 | #define _Plane3_H__
|
---|
3 |
|
---|
4 | #include "Vector3.h"
|
---|
5 |
|
---|
6 | namespace GtpVisibilityPreprocessor {
|
---|
7 |
|
---|
8 |
|
---|
9 | /** 3D Plane */
|
---|
10 | class Plane3 {
|
---|
11 | public:
|
---|
12 |
|
---|
13 | Vector3 mNormal;
|
---|
14 | float mD;
|
---|
15 |
|
---|
16 | Plane3() {}
|
---|
17 |
|
---|
18 | Plane3(const Vector3 &a,
|
---|
19 | const Vector3 &b,
|
---|
20 | const Vector3 &c
|
---|
21 | ) {
|
---|
22 | Vector3 v1=a-b, v2=c-b;
|
---|
23 | mNormal = Normalize(CrossProd(v2,v1));
|
---|
24 | mD = -DotProd(b, mNormal);
|
---|
25 | }
|
---|
26 |
|
---|
27 | Plane3(const Vector3 &normal,
|
---|
28 | const Vector3 &point
|
---|
29 | ):mNormal(normal)
|
---|
30 | {
|
---|
31 | mD = -DotProd(normal, point);
|
---|
32 | }
|
---|
33 |
|
---|
34 | void ReverseOrientation()
|
---|
35 | {
|
---|
36 | mNormal *= -1;
|
---|
37 | mD *= -1;
|
---|
38 | }
|
---|
39 |
|
---|
40 | float Distance(const Vector3 &v) const {
|
---|
41 | return DotProd(v, mNormal) + mD;
|
---|
42 | }
|
---|
43 |
|
---|
44 | enum {BACK_SIDE = -1, INTERSECTS = 0, FRONT_SIDE = 1};
|
---|
45 |
|
---|
46 |
|
---|
47 | /** Returns 1 if v is on front side, -1 if on back side, 0 if on plane.
|
---|
48 | */
|
---|
49 | int Side(const Vector3 &v, const float threshold = 1e-6) const;
|
---|
50 |
|
---|
51 | /** Finds intersection of line segment between points a and b with plane.
|
---|
52 | @param a start point
|
---|
53 | @param b end point
|
---|
54 | @param t if not NULL, returns parameter value of intersections
|
---|
55 | @param coplanar if not NULL, returns true if plane and line segments are coplanar.
|
---|
56 | */
|
---|
57 | Vector3 FindIntersection(const Vector3 &a,
|
---|
58 | const Vector3 &b,
|
---|
59 | float *t = NULL,
|
---|
60 | bool *coplanar = NULL) const;
|
---|
61 |
|
---|
62 | /** Finds value of intersection parameter t on line segment from a to b.
|
---|
63 | @returns 0 if coplanar, else parameter t
|
---|
64 | */
|
---|
65 | float FindT(const Vector3 &a, const Vector3 &b) const;
|
---|
66 |
|
---|
67 | friend bool
|
---|
68 | PlaneIntersection(const Plane3 &a, const Plane3 &b, const Plane3 &c, Vector3 &result);
|
---|
69 |
|
---|
70 | friend ostream &operator<<(ostream &s, const Plane3 p) {
|
---|
71 | s<<p.mNormal<<" "<<p.mD;
|
---|
72 | return s;
|
---|
73 | }
|
---|
74 |
|
---|
75 |
|
---|
76 | };
|
---|
77 |
|
---|
78 |
|
---|
79 | }
|
---|
80 |
|
---|
81 | #endif
|
---|