Converted "class fgVIEW" to "class FGView" and updated to make data

members private and make required accessor functions.
This commit is contained in:
curt 1998-12-09 18:50:12 +00:00 committed by Tim Moore
parent 50227c435c
commit 2487e696b8
3 changed files with 11 additions and 14 deletions

View File

@ -257,7 +257,6 @@ void fgSkyInit( void ) {
void fgSkyRender( void ) {
FGState *f;
fgLIGHT *l;
fgVIEW *v;
float inner_color[4];
float middle_color[4];
float outer_color[4];
@ -266,7 +265,6 @@ void fgSkyRender( void ) {
f = current_aircraft.fdm_state;
l = &cur_light_params;
v = &current_view;
// printf("Rendering the sky.\n");
@ -286,11 +284,10 @@ void fgSkyRender( void ) {
xglPushMatrix();
// Translate to view position
xglTranslatef( v->cur_zero_elev.x(),
v->cur_zero_elev.y(),
v->cur_zero_elev.z() );
Point3D zero_elev = current_view.get_cur_zero_elev();
xglTranslatef( zero_elev.x(), zero_elev.y(), zero_elev.z() );
// printf(" Translated to %.2f %.2f %.2f\n",
// v->cur_zero_elev.x, v->cur_zero_elev.y, v->cur_zero_elev.z );
// zero_elev.x, zero_elev.y, zero_elev.z );
// Rotate to proper orientation
// printf(" lon = %.2f lat = %.2f\n", FG_Longitude * RAD_TO_DEG,
@ -365,6 +362,10 @@ void fgSkyRender( void ) {
// $Log$
// Revision 1.17 1998/12/09 18:50:12 curt
// Converted "class fgVIEW" to "class FGView" and updated to make data
// members private and make required accessor functions.
//
// Revision 1.16 1998/12/05 15:54:03 curt
// Renamed class fgFLIGHT to class FGState as per request by JSB.
//

View File

@ -41,12 +41,6 @@
#include "pluto.hxx"
extern fgLIGHT cur_light_params;
extern fgTIME cur_time_params;
extern fgVIEW current_view;
class SolarSystem
{
private:

View File

@ -211,7 +211,6 @@ int fgStarsInit( void ) {
// Draw the Stars
void fgStarsRender( void ) {
FGState *f;
fgVIEW *v;
fgLIGHT *l;
fgTIME *t;
int i;
@ -219,7 +218,6 @@ void fgStarsRender( void ) {
f = current_aircraft.fdm_state;
l = &cur_light_params;
t = &cur_time_params;
v = &current_view;
// FG_PI_2 + 0.1 is about 6 degrees after sundown and before sunrise
@ -256,6 +254,10 @@ void fgStarsRender( void ) {
// $Log$
// Revision 1.25 1998/12/09 18:50:15 curt
// Converted "class fgVIEW" to "class FGView" and updated to make data
// members private and make required accessor functions.
//
// Revision 1.24 1998/12/05 15:54:04 curt
// Renamed class fgFLIGHT to class FGState as per request by JSB.
//