]> git.mxchange.org Git - simgear.git/commitdiff
s/resistence/resistance/
authormfranz <mfranz>
Sun, 13 May 2007 11:53:06 +0000 (11:53 +0000)
committermfranz <mfranz>
Sun, 13 May 2007 11:53:06 +0000 (11:53 +0000)
simgear/scene/material/mat.cxx
simgear/scene/material/mat.hxx

index d9f5c82f3f6bbc0bff68ef4fa4507d4c80dd489f..595771901db3a93c8d3ee3dbe0467b705efb2190 100644 (file)
@@ -149,7 +149,7 @@ SGMaterial::read_properties( const string &fg_root, const SGPropertyNode * props
   friction_factor = props->getDoubleValue("friction-factor", 1.0);
   rolling_friction = props->getDoubleValue("rolling-friction", 0.02);
   bumpiness = props->getDoubleValue("bumpiness", 0.0);
-  load_resistence = props->getDoubleValue("load-resistence", 1e30);
+  load_resistance = props->getDoubleValue("load-resistance", 1e30);
 
   // Taken from default values as used in ac3d
   ambient[0] = props->getDoubleValue("ambient/r", 0.2);
@@ -212,7 +212,7 @@ SGMaterial::init ()
     friction_factor = 1;
     rolling_friction = 0.02;
     bumpiness = 0;
-    load_resistence = 1e30;
+    load_resistance = 1e30;
 
     shininess = 1.0;
     for (int i = 0; i < 4; i++) {
index 3ede53fd07fa8324e3886db43551ef927d7efe8c..ea96ababb9ce2ea32c4df689ac69b4c723348ac9 100644 (file)
@@ -177,9 +177,9 @@ public:
   double get_bumpiness () const { return bumpiness; }
 
   /**
-   * Get the load resistence
+   * Get the load resistance
    */
-  double get_load_resistence () const { return load_resistence; }
+  double get_load_resistance () const { return load_resistance; }
 
   /**
    * Get the list of names for this material
@@ -270,8 +270,8 @@ private:
   // the bumpiness of that surface material
   double bumpiness;
 
-  // the load resistence of that surface material
-  double load_resistence;
+  // the load resistance of that surface material
+  double load_resistance;
 
   // material properties
   SGVec4f ambient, diffuse, specular, emission;