From b553e5a2e27732f0c755c78ae42eb2e50268a470 Mon Sep 17 00:00:00 2001 From: sanjayk03-dev Date: Tue, 30 Jul 2024 18:13:23 +0530 Subject: [PATCH] round of pos --- src/js/axis-vars.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/axis-vars.js b/src/js/axis-vars.js index 92fc20f..381d14f 100644 --- a/src/js/axis-vars.js +++ b/src/js/axis-vars.js @@ -158,7 +158,7 @@ module.exports = { } return { - pos: abs - off, + pos: abs - off < 0.00001 ? 0 : abs - off, abs: abs, off: off, min: min,