~ubuntu-branches/debian/jessie/stellarium/jessie

« back to all changes in this revision

Viewing changes to src/core/StelGridObject.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2009-03-13 20:07:22 UTC
  • mfrom: (1.1.8 upstream)
  • mto: (11.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20090313200722-gbgujsmzsa8a02ty
Import upstream version 0.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007 Fabien Chereau
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
17
 */
 
18
 
 
19
#ifndef _STELGRIDOBJECT_HPP_
 
20
#define _STELGRIDOBJECT_HPP_
 
21
 
 
22
#include "VecMath.hpp"
 
23
 
 
24
//! Simple abstract class defining the method getPositionForGrid() used
 
25
//! by the grid algorithms to get a permanent (fixed) position.
 
26
class StelGridObject
 
27
{
 
28
        public:
 
29
                virtual ~StelGridObject(void) {;}
 
30
                
 
31
                //! This method is used by the grid algorithms to get a permanent position for an object
 
32
                //! @return a unit vector giving a permanent direction in a 3d coordinate system.
 
33
                virtual Vec3d getPositionForGrid() const=0;
 
34
};
 
35
 
 
36
#endif // _STELGRIDOBJECT_HPP_