diff options
-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 5fd1026..df658f4 100644 --- a/ps/gfx/sine.js +++ b/ps/gfx/sine.js @@ -38,7 +38,7 @@ 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})`) - return `translate(${margin.left - x1}, ${margin.top -y1}) rotate(90, ${x1}, ${y1})` + return `translate(${margin.left - x1}, ${margin.top - y1}) rotate(90, ${x1}, ${y1})` }) svg.append("defs").append("clipPath").attr("id", "clip") |