source: trunk/VUT/GtpVisibilityPreprocessor/src/Plane3.h @ 290

Revision 290, 1.6 KB checked in by mattausch, 19 years ago (diff)
RevLine 
[162]1#ifndef _Plane3_H__
2#define _Plane3_H__
3
4#include "Vector3.h"
5
6 
7/** 3D Plane */
8class Plane3 {
9public:
10  Vector3 mNormal;
11  float mD;
12 
13  Plane3() {}
14 
15  Plane3(const Vector3 &a,
16         const Vector3 &b,
17         const Vector3 &c
18         ) {
19    Vector3 v1=a-b, v2=c-b;
20    mNormal = Normalize(CrossProd(v2,v1));
21    mD = -DotProd(b, mNormal);
[209]22  }
[162]23
[209]24  Plane3(const Vector3 &normal,
25         const Vector3 &point
26         ):mNormal(normal)
27  {
28    mD = -DotProd(normal, point);
[162]29  }
30
[177]31  float Distance(const Vector3 &v) const {
32    return DotProd(v, mNormal) + mD;
33  }
34
35  int Side(const Vector3 &v, const float threshold = 1e-6) const {
36    return signum(Distance(v), threshold);
37  }
[209]38
39  Vector3 FindIntersection(const Vector3 &a,
40                           const Vector3 &b,
41                           float *t = NULL,
42                           bool *coplanar = NULL
[237]43                           ) const
44  {
[245]45    const Vector3 v = b - a; // line from A to B
[289]46    float dv = DotProd(v, mNormal);
[245]47   
48    if (signum(dv) == 0)
[265]49        {
[290]50                if (coplanar) (*coplanar) = true;       
51                if (t) (*t) = 1;
[265]52                return a;
53        }
[290]54       
[245]55    float u = - Distance(a) / dv; // TODO: could be done more efficiently
56   
[290]57        if (coplanar) (*coplanar) = false;
58        if (t) (*t) = u;
59       
60        //Debug << "t: " << u << ", b - a: " << v << ", norm: " << mNormal << ", dist(a): " << - Distance(a) << ", dv: " << dv << endl;
[270]61    //return a - Distance(a) * b / dv + Distance(a) * a / dv; // NOTE: gives better precision than calclulating a + u * v
[289]62    return a + u * v;
[237]63  }
[245]64 
[209]65  friend bool
66  PlaneIntersection(const Plane3 &a, const Plane3 &b, const Plane3 &c, Vector3 &result);
[177]67 
[162]68  friend ostream &operator<<(ostream &s, const Plane3 p) {
69    s<<p.mNormal<<" "<<p.mD;
70    return s;
71  }
72
[209]73 
[162]74};
75 
76
77
78
79#endif
Note: See TracBrowser for help on using the repository browser.