Skip to content

Commit 7fdd1c5

Browse files
author
Matthew Oxley
committed
improve fitToBox function with optional "lock to axis" argument
1 parent fba499c commit 7fdd1c5

5 files changed

+34
-11
lines changed

dist/CameraControls.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export declare class CameraControls extends EventDispatcher {
8989
truck(x: number, y: number, enableTransition?: boolean): Promise<void>;
9090
forward(distance: number, enableTransition?: boolean): Promise<void>;
9191
moveTo(x: number, y: number, z: number, enableTransition?: boolean): Promise<void>;
92-
fitToBox(box3OrObject: _THREE.Box3 | _THREE.Object3D, enableTransition: boolean, { paddingLeft, paddingRight, paddingBottom, paddingTop }?: Partial<FitToOptions>): Promise<void[]>;
92+
fitToBox(box3OrObject: _THREE.Box3 | _THREE.Object3D, enableTransition: boolean, { paddingLeft, paddingRight, paddingBottom, paddingTop }?: Partial<FitToOptions>, lock?: "front" | "back"): Promise<void[]>;
9393
fitTo(box3OrObject: _THREE.Box3 | _THREE.Object3D, enableTransition: boolean, fitToOptions?: Partial<FitToOptions>): Promise<void[]>;
9494
fitToSphere(sphereOrMesh: _THREE.Sphere | _THREE.Object3D, enableTransition: boolean): Promise<void[]>;
9595
setLookAt(positionX: number, positionY: number, positionZ: number, targetX: number, targetY: number, targetZ: number, enableTransition?: boolean): Promise<void>;

dist/camera-controls.js

+11-3
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@
966966
approxEquals(this._target.z, this._targetEnd.z, this.restThreshold);
967967
return this._createOnRestPromise(resolveImmediately);
968968
};
969-
CameraControls.prototype.fitToBox = function (box3OrObject, enableTransition, _a) {
969+
CameraControls.prototype.fitToBox = function (box3OrObject, enableTransition, _a, lock) {
970970
var _b = _a === void 0 ? {} : _a, _c = _b.paddingLeft, paddingLeft = _c === void 0 ? 0 : _c, _d = _b.paddingRight, paddingRight = _d === void 0 ? 0 : _d, _e = _b.paddingBottom, paddingBottom = _e === void 0 ? 0 : _e, _f = _b.paddingTop, paddingTop = _f === void 0 ? 0 : _f;
971971
var promises = [];
972972
var aabb = box3OrObject.isBox3
@@ -976,8 +976,16 @@
976976
console.warn('camera-controls: fitTo() cannot be used with an empty box. Aborting');
977977
Promise.resolve();
978978
}
979-
var theta = roundToStep(this._sphericalEnd.theta, PI_HALF);
980-
var phi = roundToStep(this._sphericalEnd.phi, PI_HALF);
979+
var theta;
980+
var phi;
981+
if (!lock) {
982+
theta = roundToStep(this._sphericalEnd.theta, PI_HALF);
983+
phi = roundToStep(this._sphericalEnd.phi, PI_HALF);
984+
}
985+
else {
986+
theta = lock === "front" ? 0 : Math.PI;
987+
phi = lock === "front" ? 0 : Math.PI;
988+
}
981989
promises.push(this.rotateTo(theta, phi, enableTransition));
982990
var normal = _v3A.setFromSpherical(this._sphericalEnd).normalize();
983991
var rotation = _quaternionA.setFromUnitVectors(normal, _AXIS_Z);

dist/camera-controls.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/camera-controls.module.js

+11-3
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ var CameraControls = (function (_super) {
960960
approxEquals(this._target.z, this._targetEnd.z, this.restThreshold);
961961
return this._createOnRestPromise(resolveImmediately);
962962
};
963-
CameraControls.prototype.fitToBox = function (box3OrObject, enableTransition, _a) {
963+
CameraControls.prototype.fitToBox = function (box3OrObject, enableTransition, _a, lock) {
964964
var _b = _a === void 0 ? {} : _a, _c = _b.paddingLeft, paddingLeft = _c === void 0 ? 0 : _c, _d = _b.paddingRight, paddingRight = _d === void 0 ? 0 : _d, _e = _b.paddingBottom, paddingBottom = _e === void 0 ? 0 : _e, _f = _b.paddingTop, paddingTop = _f === void 0 ? 0 : _f;
965965
var promises = [];
966966
var aabb = box3OrObject.isBox3
@@ -970,8 +970,16 @@ var CameraControls = (function (_super) {
970970
console.warn('camera-controls: fitTo() cannot be used with an empty box. Aborting');
971971
Promise.resolve();
972972
}
973-
var theta = roundToStep(this._sphericalEnd.theta, PI_HALF);
974-
var phi = roundToStep(this._sphericalEnd.phi, PI_HALF);
973+
var theta;
974+
var phi;
975+
if (!lock) {
976+
theta = roundToStep(this._sphericalEnd.theta, PI_HALF);
977+
phi = roundToStep(this._sphericalEnd.phi, PI_HALF);
978+
}
979+
else {
980+
theta = lock === "front" ? 0 : Math.PI;
981+
phi = lock === "front" ? 0 : Math.PI;
982+
}
975983
promises.push(this.rotateTo(theta, phi, enableTransition));
976984
var normal = _v3A.setFromSpherical(this._sphericalEnd).normalize();
977985
var rotation = _quaternionA.setFromUnitVectors(normal, _AXIS_Z);

src/CameraControls.ts

+10-3
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ export class CameraControls extends EventDispatcher {
12801280
paddingRight = 0,
12811281
paddingBottom = 0,
12821282
paddingTop = 0
1283-
}: Partial<FitToOptions> = {} ): Promise<void[]> {
1283+
}: Partial<FitToOptions> = {}, lock?: "front" | "back" ): Promise<void[]> {
12841284

12851285
const promises = [];
12861286
const aabb = ( box3OrObject as _THREE.Box3 ).isBox3
@@ -1295,8 +1295,15 @@ export class CameraControls extends EventDispatcher {
12951295
}
12961296

12971297
// round to closest axis ( forward | backward | right | left | top | bottom )
1298-
const theta = roundToStep( this._sphericalEnd.theta, PI_HALF );
1299-
const phi = roundToStep( this._sphericalEnd.phi, PI_HALF );
1298+
let theta;
1299+
let phi;
1300+
if (!lock) {
1301+
theta = roundToStep( this._sphericalEnd.theta, PI_HALF );
1302+
phi = roundToStep( this._sphericalEnd.phi, PI_HALF );
1303+
} else {
1304+
theta = lock === "front" ? 0 : Math.PI;
1305+
phi = lock === "front" ? 0 : Math.PI;
1306+
}
13001307

13011308
promises.push( this.rotateTo( theta, phi, enableTransition ) );
13021309

0 commit comments

Comments
 (0)