]> git.mxchange.org Git - simgear.git/commitdiff
Remove unused functions/includes ...
authorfrohlich <frohlich>
Tue, 10 Mar 2009 19:20:44 +0000 (19:20 +0000)
committerTim Moore <timoore@redhat.com>
Wed, 11 Mar 2009 19:06:56 +0000 (20:06 +0100)
Modified Files:
simgear/scene/tgdb/userdata.hxx
simgear/scene/tgdb/userdata.cxx

simgear/scene/tgdb/userdata.cxx
simgear/scene/tgdb/userdata.hxx

index 6a4065dcfa4a4fb46d0b278be01454875d8921cc..fab67b2fcedd11bb4f67b625ed1de7d2a975ac24 100644 (file)
@@ -64,23 +64,3 @@ osg::Node* sgGetRandomModel(SGMatModel *obj) {
    return obj->get_random_model( root_props );
  }
 
-osg::Node* sgGetModel(int i, SGMatModel *obj) {
-   return obj->get_model(i, root_props );
- }
-
-static void random_pt_inside_tri( float *res,
-                                  float *n1, float *n2, float *n3 )
-{
-    double a = sg_random();
-    double b = sg_random();
-    if ( a + b > 1.0 ) {
-        a = 1.0 - a;
-        b = 1.0 - b;
-    }
-    double c = 1 - a - b;
-
-    res[0] = n1[0]*a + n2[0]*b + n3[0]*c;
-    res[1] = n1[1]*a + n2[1]*b + n3[1]*c;
-    res[2] = n1[2]*a + n2[2]*b + n3[2]*c;
-}
-
index da0a4f5da47e3595e16dc29cdecc00848e51c33c..e5a870e3ae4bc03604c2c80d72efa818b3e8ecea 100644 (file)
 
 #include <simgear/compiler.h>
 
-#include <string>
+#include <osg/Node>
 
-#include <plib/sg.h>
-
-#include <osg/Referenced>
-#include <osg/Geometry>
-#include <osg/Group>
-
-using std::string;
-
-class SGMaterial;
 class SGMatModel;
-class SGMatModelGroup;
-class SGModelLib;
 class SGPropertyNode;
 
-
 /**
  * the application must call sgUserDataInit() and specify the
  * following values (needed by the model loader callback at draw time)