diff options
author | hellekin <hellekin@cepheide.org> | 2025-08-06 18:21:58 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2025-08-06 18:21:58 +0200 |
commit | efe6e0f03cc2fd68525fdc3748028cb0a57e1b1f (patch) | |
tree | f9d6fba0e17502ac6234bbc37109959d9ca2c03b | |
parent | ace98bbcc53e9b7d4a080153233329321b25880c (diff) | |
download | lesoiseaux.io-efe6e0f03cc2fd68525fdc3748028cb0a57e1b1f.tar.gz |
Comment out console log
-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 0fcf988..5fd1026 100644 --- a/ps/gfx/sine.js +++ b/ps/gfx/sine.js @@ -37,7 +37,7 @@ .attr('transform',function(){ var x1 = bbox.x + bbox.width / 2 var y1 = bbox.y + bbox.height / 2 - console.log(`rotate(90, ${x1}, ${y1}) translate(${margin.left}, ${margin.top})`) + //console.log(`rotate(90, ${x1}, ${y1}) translate(${margin.left}, ${margin.top})`) return `translate(${margin.left - x1}, ${margin.top -y1}) rotate(90, ${x1}, ${y1})` }) |