diff options
author | hellekin <hellekin@cepheide.org> | 2025-08-06 18:37:47 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2025-08-06 18:37:47 +0200 |
commit | 995ebb12bfeee56849b78bf2b99c0cf612da2c1c (patch) | |
tree | e188c0600583ea436493ba96311f15c3e011909d | |
parent | feb11f47abf7fe6796b559b5377a3139a9a7ad5e (diff) | |
download | lesoiseaux.io-1.4.12.tar.gz |
-rw-r--r-- | ps/gfx/sine.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ps/gfx/sine.js b/ps/gfx/sine.js index df658f4..678fd26 100644 --- a/ps/gfx/sine.js +++ b/ps/gfx/sine.js @@ -46,7 +46,7 @@ .append("rect").attr("width", h).attr("height", w) const graphContainer = svg.append("g") - .attr('transform', `translate(-${initialX}, -${initialY})`); + .attr('transform', `translate(-${initialX}, ${initialY})`); const state = { initialX, |