From 32af983910f84d1fbc15dfa6e13d37d3895a57e6 Mon Sep 17 00:00:00 2001 From: jonasengelmann <40031476+jonasengelmann@users.noreply.github.com> Date: Wed, 29 Jun 2022 20:32:47 +0200 Subject: [PATCH] always return Euclidean modulo of current rotation --- src/viewport.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/viewport.js b/src/viewport.js index 9a058968..4d8b9c9a 100644 --- a/src/viewport.js +++ b/src/viewport.js @@ -956,8 +956,8 @@ $.Viewport.prototype = { */ getRotation: function(current) { return current ? - this.degreesSpring.current.value : - this.degreesSpring.target.value; + $.euclideanModulo(this.degreesSpring.current.value, 360) : + $.euclideanModulo(this.degreesSpring.target.value, 360); }, /**