From: curt Date: Mon, 15 Dec 1997 20:59:08 +0000 (+0000) Subject: Misc. tweaks. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8f7a446ec862293192cebb1a4ae43569d1fec36a;p=simgear.git Misc. tweaks. --- diff --git a/Scenery/astro.c b/Scenery/astro.c index f742a1b5..6bd4e0d2 100644 --- a/Scenery/astro.c +++ b/Scenery/astro.c @@ -90,7 +90,7 @@ void fgAstroRender() { glDisable( GL_FOG ); /* set the sun position */ - /* glLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec_inv );*/ + glLightfv( GL_LIGHT0, GL_POSITION, l->sun_vec_inv ); glPushMatrix(); @@ -104,15 +104,15 @@ void fgAstroRender() { #endif glRotatef( angle, 0.0, 0.0, -1.0 ); + /* render the moon */ + fgMoonRender(); + /* render the stars */ fgStarsRender(); /* render the sun */ fgSunRender(); - /* render the moon */ - fgMoonRender(); - glPopMatrix(); /* reenable fog effects */ @@ -121,9 +121,12 @@ void fgAstroRender() { /* $Log$ -/* Revision 1.6 1997/12/12 21:41:27 curt -/* More light/material property tweaking ... still a ways off. +/* Revision 1.7 1997/12/15 20:59:09 curt +/* Misc. tweaks. /* + * Revision 1.6 1997/12/12 21:41:27 curt + * More light/material property tweaking ... still a ways off. + * * Revision 1.5 1997/12/12 19:52:54 curt * Working on lightling and material properties. * diff --git a/Scenery/moon.c b/Scenery/moon.c index 2cbaf791..e72404f9 100644 --- a/Scenery/moon.c +++ b/Scenery/moon.c @@ -252,7 +252,7 @@ void fgMoonInit() { yMoon = 60000.0 * sin(moonPos.RightAscension) * cos(moonPos.Declination); zMoon = 60000.0 * sin(moonPos.Declination); - glutSolidSphere(1.0, 10, 10); + glutSolidSphere(1.0, 15, 15); glEndList(); } @@ -270,7 +270,8 @@ void fgMoonRender() { glLightfv(GL_LIGHT0, GL_AMBIENT, l->scene_clear ); glLightfv(GL_LIGHT0, GL_DIFFUSE, moon_color ); - glMaterialfv(GL_FRONT, GL_AMBIENT, black); + glMaterialfv(GL_FRONT, GL_AMBIENT, l->scene_clear ); + glMaterialfv(GL_FRONT, GL_AMBIENT, moon_color ); glMaterialfv(GL_FRONT, GL_DIFFUSE, moon_color); glPushMatrix();