diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2024-06-18 11:01:45 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2024-06-18 11:01:45 +0200 |
commit | a1c23d3838f6551f01894be40c8894398467c541 (patch) | |
tree | deb1ff485284dd0040dc50aec4f8df2c129bc22c /src/animation/Runner.js | |
parent | 3b47e461f0773e619619f1bc838234fdd9920d90 (diff) | |
download | svg.js-a1c23d3838f6551f01894be40c8894398467c541.tar.gz svg.js-a1c23d3838f6551f01894be40c8894398467c541.zip |
update dependencies
Diffstat (limited to 'src/animation/Runner.js')
-rw-r--r-- | src/animation/Runner.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/animation/Runner.js b/src/animation/Runner.js index 8fd4b8b..be74c7a 100644 --- a/src/animation/Runner.js +++ b/src/animation/Runner.js @@ -251,8 +251,8 @@ export default class Runner extends EventTarget { x <= 0 ? Math.round(f(1e-5)) : x < endTime - ? f(x) - : Math.round(f(endTime - 1e-5)) + ? f(x) + : Math.round(f(endTime - 1e-5)) return position } @@ -790,8 +790,8 @@ extend(Runner, { transforms.affine != null ? transforms.affine : affine != null - ? affine - : !isMatrix + ? affine + : !isMatrix // Create a morpher and set its type const morpher = new Morphable(this._stepper).type( |