00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef SGPlane_H
00019 #define SGPlane_H
00020
00021 template<typename T>
00022 class SGPlane {
00023 public:
00024 SGPlane()
00025 { }
00026 SGPlane(const SGVec3<T>& normal, const T& dist) :
00027 _normal(normal), _dist(dist)
00028 { }
00029 SGPlane(const SGVec3<T>& normal, const SGVec3<T>& point) :
00030 _normal(normal), _dist(-dot(normal, point))
00031 { }
00032 SGPlane(const SGVec3<T> vertices[3]) :
00033 _normal(normalize(cross(vertices[1] - vertices[0],
00034 vertices[2] - vertices[0]))),
00035 _dist(-dot(_normal, vertices[0]))
00036 { }
00037 SGPlane(const SGVec3<T>& v0, const SGVec3<T>& v1, const SGVec3<T>& v2) :
00038 _normal(normalize(cross(v1 - v0, v2 - v0))),
00039 _dist(-dot(_normal, v0))
00040 { }
00041 template<typename S>
00042 explicit SGPlane(const SGPlane<S>& plane) :
00043 _normal(plane.getNormal()), _dist(plane.getDist())
00044 { }
00045
00046 void setNormal(const SGVec3<T>& normal)
00047 { _normal = normal; }
00048 const SGVec3<T>& getNormal() const
00049 { return _normal; }
00050
00051 void setDist(const T& dist)
00052 { _dist = dist; }
00053 const T& getDist() const
00054 { return _dist; }
00055
00057 SGVec3<T> getPointOnPlane() const
00058 { return -_dist*_normal; }
00059
00061 T getPositiveDist() const
00062 { return -_dist; }
00065 const T& getNegativeDist() const
00066 { return _dist; }
00067
00068 private:
00069
00070 SGVec3<T> _normal;
00071 T _dist;
00072 };
00073
00074 #endif