提交 eaf04aab 编写于 作者: M Michael Herzog 提交者: Mr.doob

#9735: Fixed copy method in THREE.Spherical (#9737)

上级 e8d52e89
......@@ -42,9 +42,9 @@ Spherical.prototype = {
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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册