~ubuntu-branches/debian/sid/stellarium/sid

« back to all changes in this revision

Viewing changes to plugins/Oculars/src/CCD.hpp

  • Committer: Package Import Robot
  • Author(s): Tomasz Buchert
  • Date: 2013-08-04 15:06:55 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20130804150655-iji0vb5navh3lk13
Tags: 0.12.2-1
* Imported Upstream version 0.12.2
* Added dependency to phonon (to enable video/sound)
* Fixed VCS links
* Removed unused lintian tag (embedded-library glee)
* Dropped obsolete patch
* Update copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <QSettings>
25
25
 
26
26
class Telescope;
 
27
class Lens;
27
28
 
28
29
class CCD : public QObject
29
30
{
62
63
          * The formula for this calculation comes from the Yerkes observatory.
63
64
          * fov degrees = 2PI/360degrees * chipDimension mm / telescope FL mm
64
65
          */
65
 
        double getActualFOVx(Telescope *telescope) const;
66
 
        double getActualFOVy(Telescope *telescope) const;
 
66
        double getActualFOVx(Telescope *telescope, Lens *lens) const;
 
67
        double getActualFOVy(Telescope *telescope, Lens *lens) const;
67
68
        QMap<int, QString> propertyMap();
68
69
private:
69
70
        QString m_name;