~daggerstab/stellarium/telescope-control-servo-cat

« back to all changes in this revision

Viewing changes to src/draw.h

  • Committer: xalioth
  • Date: 2002-07-12 17:35:08 UTC
  • Revision ID: vcs-imports@canonical.com-20020712173508-pgzrcpff6pka8qcf
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Stellarium
 
3
 * Copyright (C) 2002 Fabien Ch�reau
 
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
 * 
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 * 
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __AFFICHAGEH__
 
21
#define __AFFICHAGEH__
 
22
 
 
23
#include "stellarium.h"
 
24
#include "s_utility.h"
 
25
 
 
26
void InitMeriParal(void);
 
27
void drawIntro(void);
 
28
void DrawPoint(float X,float Y,float Z);
 
29
void DrawPointer(vec3_t,float,vec3_t,int);
 
30
 
 
31
void DrawCardinaux(void);
 
32
void DrawMilkyWay(void);
 
33
void DrawMeridiens(void);
 
34
void DrawMeridiensAzimut(void);
 
35
void DrawParallelsAzimut(void);
 
36
void DrawParallels(void);
 
37
void DrawEquator(void);
 
38
void DrawEcliptic(void);
 
39
void DrawFog(void);
 
40
void DrawDecor(int);
 
41
//void DrawAtmosphere(void);
 
42
void DrawGround(void);
 
43
void DrawMenu(void);
 
44
void DrawInfo(void);
 
45
 
 
46
void DrawAtmosphere2(void);
 
47
void InitAtmosphere(void);
 
48
void CalcAtmosphere(void);
 
49
 
 
50
void Oriente(void);
 
51
 
 
52
void DrawHelp(void);
 
53
 
 
54
#endif