]> git.mxchange.org Git - simgear.git/commitdiff
Remove unused methods.
authorfrohlich <frohlich>
Tue, 10 Mar 2009 19:23:19 +0000 (19:23 +0000)
committerTim Moore <timoore@redhat.com>
Wed, 11 Mar 2009 19:06:57 +0000 (20:06 +0100)
Modified Files:
material/matmodel.hxx material/matmodel.cxx

simgear/scene/material/matmodel.cxx
simgear/scene/material/matmodel.hxx

index 47fe1e0942567aa8ca72215f8a138c8164bc9a33..d8c9e3f1e7541aa5525ed51818b822d56870bd26 100644 (file)
@@ -46,28 +46,6 @@ using std::map;
 
 using namespace simgear;
 
-\f
-////////////////////////////////////////////////////////////////////////
-// Local static functions.
-////////////////////////////////////////////////////////////////////////
-
-/**
- * Internal method to test whether a file exists.
- *
- * TODO: this should be moved to a SimGear library of local file
- * functions.
- */
-static inline bool
-local_file_exists( const string& path ) {
-    sg_gzifstream in( path );
-    if ( ! in.is_open() ) {
-       return false;
-    } else {
-       return true;
-    }
-}
-
-
 \f
 ////////////////////////////////////////////////////////////////////////
 // Implementation of SGMatModel.
@@ -155,14 +133,6 @@ SGMatModel::load_models( SGPropertyNode *prop_root )
   _models_loaded = true;
 }
 
-osg::Node*
-SGMatModel::get_model( int index,
-                       SGPropertyNode *prop_root )
-{
-  load_models( prop_root ); // comment this out if preloading models
-  return _models[index].get();
-}
-
 osg::Node*
 SGMatModel::get_random_model( SGPropertyNode *prop_root )
 {
index ac6856979c8c729cbd26c8933eae4385b8425aa7..9d06427a968bd581c569ef34e3a847751ceb1783 100644 (file)
@@ -77,15 +77,6 @@ public:
     int get_model_count( SGPropertyNode *prop_root );
 
 
-    /**
-     * Get a specific variant model for the object.
-     *
-     * @param index The index of the model.
-     * @return The model.
-     */
-     osg::Node *get_model( int index, SGPropertyNode *prop_root );
-
-
     /**
      * Get a randomly-selected variant model for the object.
      *