ellipsoid.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // ellipsoid.h
  2. //
  3. // Copyright (C) 2002-2008, Chris Laurel <claurel@shatters.net>
  4. //
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. #ifndef _CELMATH_ELLIPSOID_H_
  10. #define _CELMATH_ELLIPSOID_H_
  11. #include "vecmath.h"
  12. template<class T> class Ellipsoid
  13. {
  14.  public:
  15.     Ellipsoid();
  16.     Ellipsoid(const Vector3<T>&);
  17.     Ellipsoid(const Point3<T>&, const Vector3<T>&);
  18.     
  19.     bool contains(const Point3<T>& p) const;
  20.  
  21.  public:
  22.     Point3<T> center;
  23.     Vector3<T> axes;
  24. };
  25. typedef Ellipsoid<float>   Ellipsoidf;
  26. typedef Ellipsoid<double>  Ellipsoidd;
  27. /*! Default Ellipsoid constructor. Create a unit sphere centered
  28.  *  at the origin.
  29.  */
  30. template<class T> Ellipsoid<T>::Ellipsoid() :
  31.     center(0, 0, 0), axes(1, 1, 1)
  32. {
  33. }
  34. /*! Created an ellipsoid with the specified semiaxes, centered
  35.  *  at the origin.
  36.  */
  37. template<class T> Ellipsoid<T>::Ellipsoid(const Vector3<T>& _axes) :
  38.     center(0, 0, 0), axes(_axes)
  39. {
  40. }
  41. /*! Create an ellipsoid with the specified center and semiaxes.
  42.  */
  43. template<class T> Ellipsoid<T>::Ellipsoid(const Point3<T>& _center,
  44.                                           const Vector3<T>& _axes) :
  45.     center(_center), axes(_axes)
  46. {
  47. }
  48. /*! Test whether the point p lies inside the ellipsoid.
  49.  */
  50. template<class T> bool Ellipsoid<T>::contains(const Point3<T>& p) const
  51. {
  52.     Vector3<T> v = p - center;
  53.     v = Vector3<T>(v.x / axes.x, v.y / axes.y, v.z / axes.z);
  54.     return v * v <= (T) 1.0;
  55. }
  56. #endif // _CELMATH_ELLIPSOID_H_