From 57c5b6cd8d12ffdaa3e0b099451e3c031012750a Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Thu, 03 Oct 2019 20:34:32 -0400
Subject: [PATCH] Fix lighttouched

---
 Cone.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cone.java b/Cone.java
index d0d4c5c..3396bc6 100644
--- a/Cone.java
+++ b/Cone.java
@@ -17,7 +17,7 @@
         retile();
         base = LA.newVector(0, 0, 0); // -1);
         apex = LA.newVector(0, 1, 0); // 1);
-        baseRadius = apexRadius = 0.5; // 0.125;
+        baseRadius = apexRadius = 0.6369; // == 0.5 * 4/3.14 // 0.5; // 0.125;
         //fromStandard = new double[4][4];
         //toStandard = new double[4][4];
         //LA.matIdentity(fromStandard);
@@ -196,7 +196,7 @@
 
     double uStretch()
     {
-        return 3; // Actually 3.14 (I think)
+        return 4; // 3; // Actually 3.14 (I think)
     }
     
     double vFlip(double v)

--
Gitblit v1.6.2