From f9325048496d7cdbcad233f8a6b84c88e79adcc2 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Tue, 17 Sep 2019 20:11:47 -0400 Subject: [PATCH] Rename link2master to link2support. --- Sphere.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Sphere.java b/Sphere.java index baf117f..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(); @@ -95,9 +95,9 @@ return e; } - protected void deepCopySelf(Object3D other) + protected void deepCopyNode(Object3D other) { - super.deepCopySelf(other); + super.deepCopyNode(other); Sphere e = (Sphere) other; if (center != null) { -- Gitblit v1.6.2