sebastien 7 years ago
parent
commit
4fbd8c9221
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Mesh/babylon.abstractMesh.ts

+ 2 - 2
src/Mesh/babylon.abstractMesh.ts

@@ -1,6 +1,6 @@
 module BABYLON {
 module BABYLON {
     /** @hidden */
     /** @hidden */
-    class FacetData {
+    class _FacetDataStorage {
         // facetData private properties
         // facetData private properties
         public facetPositions: Vector3[];             // facet local positions
         public facetPositions: Vector3[];             // facet local positions
         public facetNormals: Vector3[];               // facet local normals
         public facetNormals: Vector3[];               // facet local normals
@@ -76,7 +76,7 @@
             return TransformNode.BILLBOARDMODE_ALL;
             return TransformNode.BILLBOARDMODE_ALL;
         }
         }
 
 
-        private _facetData = new FacetData();
+        private _facetData = new _FacetDataStorage();
 
 
         /** Gets ot sets the culling strategy to use to find visible meshes */
         /** Gets ot sets the culling strategy to use to find visible meshes */
         public cullingStrategy = AbstractMesh.CULLINGSTRATEGY_STANDARD;
         public cullingStrategy = AbstractMesh.CULLINGSTRATEGY_STANDARD;