@@ -1173,7 +1173,7 @@ THREE.TransformControlsGizmo = function () {
} else {
- factor = this.worldPosition.distanceTo( this.cameraPosition ) * Math.min( 1.9 * Math.tan( Math.PI * this.camera.getEffectiveFOV() / 360 ), 7 );
+ factor = this.worldPosition.distanceTo( this.cameraPosition ) * Math.min( 1.9 * Math.tan( Math.PI * this.camera.fov / 360 ) / this.camera.zoom, 7 );
}
@@ -1196,7 +1196,7 @@ var TransformControlsGizmo = function () {