From a7e7618fb914f8b919a17daf6c020b860c5d11c9 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Tue, 10 Sep 2019 00:32:18 -0400
Subject: [PATCH] Lazy icons.

---
 Sphere.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Sphere.java b/Sphere.java
index 4a0b298..af49eba 100644
--- a/Sphere.java
+++ b/Sphere.java
@@ -13,8 +13,8 @@
         this(false);
 
         radius = 0.05f;
-        uDivs = 7;
-        vDivs = 6;
+        uDivs = 11; // 7;
+        vDivs = 4; // 6;
 
         center = new cVector();
         center.set(x, y, z);
@@ -44,8 +44,8 @@
         inPnt = new cVector();
         name = "Sphere";
         //uDivs = vDivs = 16;
-        uDivs = 8; // 19;
-        vDivs = 8; // 18;
+        uDivs = 12; // 8; // 19;
+        vDivs = 6; // 8; // 18;
         minUDivs = 3;
         minVDivs = 2;
         //center = new cVector();

--
Gitblit v1.6.2