|
@@ -42,9 +42,9 @@ Spherical.prototype = {
|
|
|
|
|
|
copy: function ( other ) {
|
|
copy: function ( other ) {
|
|
|
|
|
|
- this.radius.copy( other.radius );
|
|
|
|
- this.phi.copy( other.phi );
|
|
|
|
- this.theta.copy( other.theta );
|
|
|
|
|
|
+ this.radius = other.radius;
|
|
|
|
+ this.phi = other.phi;
|
|
|
|
+ this.theta = other.theta;
|
|
|
|
|
|
return this;
|
|
return this;
|
|
|
|
|