mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
constrained rotation to shortest path
This commit is contained in:
parent
1b27e59be8
commit
3cdd94e465
@ -917,7 +917,16 @@ $.Viewport.prototype = {
|
||||
if (immediately) {
|
||||
this.degreesSpring.resetTo(degrees);
|
||||
} else {
|
||||
this.degreesSpring.springTo(degrees);
|
||||
var from = $.euclideanModulo(this.degreesSpring.current.value, 360);
|
||||
this.degreesSpring.resetTo(from);
|
||||
var to = $.euclideanModulo(degrees, 360);
|
||||
var diff = to - from;
|
||||
if (diff > 180) {
|
||||
to -= 360;
|
||||
} else if (diff < -180) {
|
||||
to += 360;
|
||||
}
|
||||
this.degreesSpring.springTo(to);
|
||||
}
|
||||
|
||||
this._setContentBounds(
|
||||
|
@ -1075,7 +1075,7 @@
|
||||
|
||||
viewport.setRotation(400);
|
||||
assert.strictEqual(viewport.getRotation(true), 0, 'current rotation is not changed');
|
||||
assert.strictEqual(viewport.getRotation(false), 400, 'target rotation is set correctly');
|
||||
assert.strictEqual(viewport.getRotation(false), 40, 'target rotation is set correctly');
|
||||
|
||||
viewport.setRotation(200, true);
|
||||
assert.strictEqual(viewport.getRotation(true), 200, 'current rotation is set correctly');
|
||||
|
Loading…
Reference in New Issue
Block a user