~ubuntu-branches/debian/experimental/stellarium/experimental

« back to all changes in this revision

Viewing changes to src/core/modules/Planet.hpp

  • Committer: Package Import Robot
  • Author(s): Tomasz Buchert
  • Date: 2013-04-23 18:31:29 UTC
  • mfrom: (1.2.11)
  • Revision ID: package-import@ubuntu.com-20130423183129-u1bus3c87vywlmku
Tags: 0.12.1-1
* Imported Upstream version 0.12.1
* Installing icons provided by upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
        //! Get the radius of the planet in AU.
212
212
        //! @return the radius of the planet in astronomical units.
213
213
        double getRadius(void) const {return radius;}
 
214
        //! Get duration of sidereal day
214
215
        double getSiderealDay(void) const {return re.period;}
 
216
        //! Get duration of sidereal year
215
217
        double getSiderealPeriod(void) const { return re.siderealPeriod; }
 
218
        //! Get duration of mean solar day
 
219
        double getMeanSolarDay(void) const;
216
220
 
217
221
        const QString& getTextMapName() const {return texMapName;}      
218
222