.. | .. |
---|
13 | 13 | this(false); |
---|
14 | 14 | |
---|
15 | 15 | radius = 0.05f; |
---|
16 | | - uDivs = 7; |
---|
17 | | - vDivs = 6; |
---|
| 16 | + uDivs = 11; // 7; |
---|
| 17 | + vDivs = 4; // 6; |
---|
18 | 18 | |
---|
19 | 19 | center = new cVector(); |
---|
20 | 20 | center.set(x, y, z); |
---|
.. | .. |
---|
44 | 44 | inPnt = new cVector(); |
---|
45 | 45 | name = "Sphere"; |
---|
46 | 46 | //uDivs = vDivs = 16; |
---|
47 | | - uDivs = 8; // 19; |
---|
48 | | - vDivs = 8; // 18; |
---|
| 47 | + uDivs = 12; // 8; // 19; |
---|
| 48 | + vDivs = 6; // 8; // 18; |
---|
49 | 49 | minUDivs = 3; |
---|
50 | 50 | minVDivs = 2; |
---|
51 | 51 | //center = new cVector(); |
---|
.. | .. |
---|
95 | 95 | return e; |
---|
96 | 96 | } |
---|
97 | 97 | |
---|
98 | | - protected void deepCopySelf(Object3D other) |
---|
| 98 | + protected void deepCopyNode(Object3D other) |
---|
99 | 99 | { |
---|
100 | | - super.deepCopySelf(other); |
---|
| 100 | + super.deepCopyNode(other); |
---|
101 | 101 | Sphere e = (Sphere) other; |
---|
102 | 102 | if (center != null) |
---|
103 | 103 | { |
---|