From 33504fc9a180903aace77613264550754fba5706 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Thu, 15 Aug 2019 12:03:58 -0400
Subject: [PATCH] Shadow RGB

---
 Grid.java |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/Grid.java b/Grid.java
index 1780c12..ab3815c 100644
--- a/Grid.java
+++ b/Grid.java
@@ -62,9 +62,19 @@
 	*/
     }
 
+    double uStretch()
+    {
+        return 1;
+    }
+    
+    double vFlip(double v)
+    {
+        return v;
+    }
+    
     Vertex biparamFunction(double u, double v)
     {
-        Vertex temp = new Vertex((2*v-1)*radius*8, 0 /*-radius,*/, (2*u-1)*radius*8);
+        Vertex temp = new Vertex((2*v-1)*radius*4, 0 /*-radius,*/, (2*u-1)*radius*4);
         temp.norm = LA.newVector(0,1,0);
         return temp;
     }

--
Gitblit v1.6.2