|
@@ -90,9 +90,9 @@ THREE.Matrix4.prototype = {
|
|
y.cross( z, x ).normalize();
|
|
y.cross( z, x ).normalize();
|
|
|
|
|
|
|
|
|
|
- this.n11 = x.x; this.n12 = y.x; this.n13 = z.x; this.n14 = eye.x;
|
|
|
|
- this.n21 = x.y; this.n22 = y.y; this.n23 = z.y; this.n24 = eye.y;
|
|
|
|
- this.n31 = x.z; this.n32 = y.z; this.n33 = z.z; this.n34 = eye.z;
|
|
|
|
|
|
+ this.n11 = x.x; this.n12 = y.x; this.n13 = z.x;
|
|
|
|
+ this.n21 = x.y; this.n22 = y.y; this.n23 = z.y;
|
|
|
|
+ this.n31 = x.z; this.n32 = y.z; this.n33 = z.z;
|
|
|
|
|
|
return this;
|
|
return this;
|
|
|
|
|