commit 571aa3fac2fdb39710f369a67610e3a8f81a7bc7
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Tue Mar 3 11:43:24 2020 +0000

    Convert Projection to not use the depreciated MeshBase.setStretch() API.

diff --git a/src/main/java/org/distorted/library/mesh/MeshBase.java b/src/main/java/org/distorted/library/mesh/MeshBase.java
index 629e2ec..652a679 100644
--- a/src/main/java/org/distorted/library/mesh/MeshBase.java
+++ b/src/main/java/org/distorted/library/mesh/MeshBase.java
@@ -475,10 +475,11 @@ public abstract class MeshBase
        }
      }
 
-
-
 ///////////////////////////////////////////////////////////////////////////////////////////////////
+// all 4 APIs depreciated - being removed from the apps. When done, we will also remove the
+// premultiply of the Object vertices by m_objD in the vertex shader.
 
+   @Deprecated
    public void setStretch(int sx, int sy, int sz)
      {
      mBoundingX = sx/2.0f;
@@ -486,20 +487,21 @@ public abstract class MeshBase
      mBoundingZ = sz/2.0f;
      }
 
+   @Deprecated
    public float getStretchX()
     {
     return mBoundingX*2;
     }
+   @Deprecated
    public float getStretchY()
     {
     return mBoundingY*2;
     }
+   @Deprecated
    public float getStretchZ()
     {
     return mBoundingZ*2;
     }
-
-
    }
 
 
