]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sky/sphere.cxx
MSVC5 portability changes contributed by Bruce Finney.
[simgear.git] / simgear / sky / sphere.cxx
index 17248992860e687e2fc7939d39e447b45d3cdbcd..d9732c8e5b08fee990345f70b34d9236fc9a3aba 100644 (file)
 // $Id$
 
 
-#include <plib/ssg.h>
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
 
+#include <plib/ssg.h>
+#include <simgear/constants.h>
 
 // return a sphere object as an ssgBranch
 ssgBranch *ssgMakeSphere( ssgSimpleState *state, ssgColourArray *cl,
-                         double radius, int slices, int stacks )
+                         double radius, int slices, int stacks,
+                         ssgCallback predraw, ssgCallback postdraw )
 {
     float rho, drho, theta, dtheta;
     float x, y, z;
@@ -56,8 +61,8 @@ ssgBranch *ssgMakeSphere( ssgSimpleState *state, ssgColourArray *cl,
        // accept value as given to us in
     }
 
-    drho = M_PI / (float) stacks;
-    dtheta = 2.0 * M_PI / (float) slices;
+    drho = FG_PI / (float) stacks;
+    dtheta = 2.0 * FG_PI / (float) slices;
 
     /* texturing: s goes from 0.0/0.25/0.5/0.75/1.0 at +y/+x/-y/-x/+y
        axis t goes from -1.0/+1.0 at z = -radius/+radius (linear along
@@ -119,6 +124,8 @@ ssgBranch *ssgMakeSphere( ssgSimpleState *state, ssgColourArray *cl,
        ssgLeaf *slice = 
            new ssgVtxTable ( GL_TRIANGLE_STRIP, vl, nl, tl, cl );
        slice->setState( state );
+       slice->setCallback( SSG_CALLBACK_PREDRAW, predraw );
+       slice->setCallback( SSG_CALLBACK_POSTDRAW, postdraw );
 
        sphere->addKid( slice );