From b7dce2b3654df801a3904bc270dfcb641fcdb66e Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Mon, 02 Nov 2015 19:20:40 -0500
Subject: [PATCH] Rename GrafreeD

---
 BoundaryRep.java |   30 +++++++++++++++---------------
 1 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/BoundaryRep.java b/BoundaryRep.java
index 693d818..12a985c 100644
--- a/BoundaryRep.java
+++ b/BoundaryRep.java
@@ -172,16 +172,16 @@
             bufV = other.bufV;
             bufF = other.bufF;
 
-            positions = (float[]) GraphreeD.clone(other.positions);
-            normals = (float[]) GraphreeD.clone(other.normals);
-            colors = (float[]) GraphreeD.clone(other.colors);
-            uvmap = (float[]) GraphreeD.clone(other.uvmap);
-            triangles = (int[]) GraphreeD.clone(other.triangles);
+            positions = (float[]) GrafreeD.clone(other.positions);
+            normals = (float[]) GrafreeD.clone(other.normals);
+            colors = (float[]) GrafreeD.clone(other.colors);
+            uvmap = (float[]) GrafreeD.clone(other.uvmap);
+            triangles = (int[]) GrafreeD.clone(other.triangles);
             
-            indices = (int[]) GraphreeD.clone(other.indices);
+            indices = (int[]) GrafreeD.clone(other.indices);
 
-            vertices = (Vector<Vertex>) GraphreeD.clone(other.vertices);
-            faces = (Vector<Face>) GraphreeD.clone(other.faces);
+            vertices = (Vector<Vertex>) GrafreeD.clone(other.vertices);
+            faces = (Vector<Face>) GrafreeD.clone(other.faces);
         }
         else
         {
@@ -1492,7 +1492,7 @@
             InitFaceIndices();
         }
         
-        BoundaryRep rep = (BoundaryRep) GraphreeD.clone(this);
+        BoundaryRep rep = (BoundaryRep) GrafreeD.clone(this);
         //float[] v = new float[100];
         
         for (int loops=1; --loops>=0;)
@@ -1522,7 +1522,7 @@
             InitFaceIndices();
         }
         
-        BoundaryRep rep = (BoundaryRep) GraphreeD.clone(this);
+        BoundaryRep rep = (BoundaryRep) GrafreeD.clone(this);
         //float[] v = new float[100];
         
         for (int loops=10; --loops>=0;)
@@ -2600,7 +2600,7 @@
 //                    if (stepout && !playedonce)
 //                    {
 //                        // sound
-//                        GraphreeD.wav.play();
+//                        GrafreeD.wav.play();
 //                        playedonce = true;
 //                    }
 //                    
@@ -2644,7 +2644,7 @@
 
             if (CameraPane.framecount - lastsoundtime > 30) // 0.25 secs
             {
-                GraphreeD.wav.play((Math.random()+0.5)/Math.max(tmp.length2(),0.2)); //, 1);
+                GrafreeD.wav.play((Math.random()+0.5)/Math.max(tmp.length2(),0.2)); //, 1);
 
                 lastsoundtime = CameraPane.framecount;
             }
@@ -3229,7 +3229,7 @@
                     k /= x*x + y*y;
                 }
                 else
-                    GraphreeD.Assert(z == 1);
+                    GrafreeD.Assert(z == 1);
                 
                 if (k < 0)
                     k = 0;
@@ -7391,7 +7391,7 @@
             Trim();
             Untrim();
         
-        BoundaryRep tmp = new BoundaryRep(); // (BoundaryRep) GraphreeD.clone(this);
+        BoundaryRep tmp = new BoundaryRep(); // (BoundaryRep) GrafreeD.clone(this);
         
         double minx = Float.POSITIVE_INFINITY;
         double maxx = Float.NEGATIVE_INFINITY;
@@ -8067,7 +8067,7 @@
         if (!trimmed)
             return;
         
-        GraphreeD.linkUV = false;
+        GrafreeD.linkUV = false;
         
         try
         {

--
Gitblit v1.6.2