From 9cc83b97378c48bae3792064f2d01b2f954c0e01 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Thu, 05 Sep 2019 21:51:51 -0400 Subject: [PATCH] Fix cone. --- Cone.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cone.java b/Cone.java index 1cd10db..490678a 100644 --- a/Cone.java +++ b/Cone.java @@ -16,7 +16,7 @@ retile(); base = LA.newVector(0, 0, 0); // -1); apex = LA.newVector(0, 1, 0); // 1); - baseRadius = apexRadius = 1; // 0.125; + baseRadius = apexRadius = 0.5; // 0.125; //fromStandard = new double[4][4]; //toStandard = new double[4][4]; //LA.matIdentity(fromStandard); @@ -195,7 +195,7 @@ double uStretch() { - return 6; // Actually 6.28 (I think) + return 3; // Actually 3.14 (I think) } double vFlip(double v) -- Gitblit v1.6.2