Updated fgGENERAL to a "type" of struct.
This commit is contained in:
parent
4e4bd05053
commit
ff852dc871
2 changed files with 15 additions and 9 deletions
|
@ -108,7 +108,7 @@ int fgReadOrbElements(struct OrbElements *dest, FILE *src)
|
||||||
|
|
||||||
int fgSolarSystemInit(struct fgTIME t)
|
int fgSolarSystemInit(struct fgTIME t)
|
||||||
{
|
{
|
||||||
struct fgGENERAL *g;
|
fgGENERAL *g;
|
||||||
char path[80];
|
char path[80];
|
||||||
int i;
|
int i;
|
||||||
FILE *data;
|
FILE *data;
|
||||||
|
@ -165,11 +165,14 @@ void fgSolarSystemUpdate(struct OrbElements *planet, struct fgTIME t)
|
||||||
|
|
||||||
|
|
||||||
/* $Log$
|
/* $Log$
|
||||||
/* Revision 1.8 1998/02/23 19:07:55 curt
|
/* Revision 1.9 1998/03/14 00:27:12 curt
|
||||||
/* Incorporated Durk's Astro/ tweaks. Includes unifying the sun position
|
/* Updated fgGENERAL to a "type" of struct.
|
||||||
/* calculation code between sun display, and other FG sections that use this
|
|
||||||
/* for things like lighting.
|
|
||||||
/*
|
/*
|
||||||
|
* Revision 1.8 1998/02/23 19:07:55 curt
|
||||||
|
* Incorporated Durk's Astro/ tweaks. Includes unifying the sun position
|
||||||
|
* calculation code between sun display, and other FG sections that use this
|
||||||
|
* for things like lighting.
|
||||||
|
*
|
||||||
* Revision 1.7 1998/02/12 21:59:33 curt
|
* Revision 1.7 1998/02/12 21:59:33 curt
|
||||||
* Incorporated code changes contributed by Charlie Hotchkiss
|
* Incorporated code changes contributed by Charlie Hotchkiss
|
||||||
* <chotchkiss@namg.us.anritsu.com>
|
* <chotchkiss@namg.us.anritsu.com>
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
/* Initialize the Star Management Subsystem */
|
/* Initialize the Star Management Subsystem */
|
||||||
int fgStarsInit( void ) {
|
int fgStarsInit( void ) {
|
||||||
FILE *fd;
|
FILE *fd;
|
||||||
struct fgGENERAL *g;
|
fgGENERAL *g;
|
||||||
/* struct CelestialCoord pltPos; */
|
/* struct CelestialCoord pltPos; */
|
||||||
char path[1024];
|
char path[1024];
|
||||||
char line[256], name[256];
|
char line[256], name[256];
|
||||||
|
@ -255,10 +255,13 @@ void fgStarsRender( void ) {
|
||||||
|
|
||||||
|
|
||||||
/* $Log$
|
/* $Log$
|
||||||
/* Revision 1.8 1998/02/12 21:59:38 curt
|
/* Revision 1.9 1998/03/14 00:27:12 curt
|
||||||
/* Incorporated code changes contributed by Charlie Hotchkiss
|
/* Updated fgGENERAL to a "type" of struct.
|
||||||
/* <chotchkiss@namg.us.anritsu.com>
|
|
||||||
/*
|
/*
|
||||||
|
* Revision 1.8 1998/02/12 21:59:38 curt
|
||||||
|
* Incorporated code changes contributed by Charlie Hotchkiss
|
||||||
|
* <chotchkiss@namg.us.anritsu.com>
|
||||||
|
*
|
||||||
* Revision 1.7 1998/02/09 15:07:48 curt
|
* Revision 1.7 1998/02/09 15:07:48 curt
|
||||||
* Minor tweaks.
|
* Minor tweaks.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue