|
@@ -189,8 +189,6 @@ THREE.CombinedCamera.prototype.toFrontView = function() {
|
|
|
|
|
|
// should we be modifing the matrix instead?
|
|
|
|
|
|
- this.rotationAutoUpdate = false;
|
|
|
-
|
|
|
};
|
|
|
|
|
|
THREE.CombinedCamera.prototype.toBackView = function() {
|
|
@@ -198,7 +196,6 @@ THREE.CombinedCamera.prototype.toBackView = function() {
|
|
|
this.rotation.x = 0;
|
|
|
this.rotation.y = Math.PI;
|
|
|
this.rotation.z = 0;
|
|
|
- this.rotationAutoUpdate = false;
|
|
|
|
|
|
};
|
|
|
|
|
@@ -207,7 +204,6 @@ THREE.CombinedCamera.prototype.toLeftView = function() {
|
|
|
this.rotation.x = 0;
|
|
|
this.rotation.y = - Math.PI / 2;
|
|
|
this.rotation.z = 0;
|
|
|
- this.rotationAutoUpdate = false;
|
|
|
|
|
|
};
|
|
|
|
|
@@ -216,7 +212,6 @@ THREE.CombinedCamera.prototype.toRightView = function() {
|
|
|
this.rotation.x = 0;
|
|
|
this.rotation.y = Math.PI / 2;
|
|
|
this.rotation.z = 0;
|
|
|
- this.rotationAutoUpdate = false;
|
|
|
|
|
|
};
|
|
|
|
|
@@ -225,7 +220,6 @@ THREE.CombinedCamera.prototype.toTopView = function() {
|
|
|
this.rotation.x = - Math.PI / 2;
|
|
|
this.rotation.y = 0;
|
|
|
this.rotation.z = 0;
|
|
|
- this.rotationAutoUpdate = false;
|
|
|
|
|
|
};
|
|
|
|
|
@@ -234,6 +228,5 @@ THREE.CombinedCamera.prototype.toBottomView = function() {
|
|
|
this.rotation.x = Math.PI / 2;
|
|
|
this.rotation.y = 0;
|
|
|
this.rotation.z = 0;
|
|
|
- this.rotationAutoUpdate = false;
|
|
|
|
|
|
};
|