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

OpenGL

开发平台:

Visual C++

  1. // spiceorbit.h
  2. //
  3. // Interface to the SPICE Toolkit
  4. //
  5. // Copyright (C) 2006, Chris Laurel <claurel@shatters.net>
  6. //
  7. // This program is free software; you can redistribute it and/or
  8. // modify it under the terms of the GNU General Public License
  9. // as published by the Free Software Foundation; either version 2
  10. // of the License, or (at your option) any later version.
  11. #ifndef _CELENGINE_SPICEORBIT_H_
  12. #define _CELENGINE_SPICEORBIT_H_
  13. #include <string>
  14. #include <list>
  15. #include <celengine/orbit.h>
  16. class SpiceOrbit : public CachingOrbit
  17. {
  18.  public:
  19.     SpiceOrbit(const std::string& _targetBodyName,
  20.                const std::string& _originName,
  21.                double _period,
  22.                double _boundingRadius,
  23.                double _beginning,
  24.                double _ending);
  25. SpiceOrbit(const std::string& _targetBodyName,
  26.    const std::string& _originName,
  27.    double _period,
  28.    double _boundingRadius);
  29.     virtual ~SpiceOrbit();
  30.     bool init(const std::string& path,
  31.   const std::list<std::string>* requiredKernels);
  32.     virtual bool isPeriodic() const;
  33.     virtual double getPeriod() const;
  34.     virtual double getBoundingRadius() const
  35.     {
  36.         return boundingRadius;
  37.     }
  38.     Point3d computePosition(double jd) const;
  39.     Vec3d computeVelocity(double jd) const;
  40.     virtual void getValidRange(double& begin, double& end) const;
  41.  private:
  42.     const std::string targetBodyName;
  43.     const std::string originName;
  44.     double period;
  45.     double boundingRadius;
  46.     bool spiceErr;
  47.     // NAIF ID codes for the target body and origin body
  48.     int targetID;
  49.     int originID;
  50.     double validIntervalBegin;
  51.     double validIntervalEnd;
  52. bool useDefaultTimeInterval;
  53. };
  54. #endif // _CELENGINE_SPICEORBIT_H_