Last active
April 18, 2022 07:09
-
-
Save netsi1964/b5957f31a56cff9f97ed7ba3c67ae799 to your computer and use it in GitHub Desktop.
Some SVG utils
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export screen2svg = (eleSvg, x, y) => { | |
const point = eleSvg.createSVGPoint(); | |
point.x = x; | |
point.y = y; | |
return point.matrixTransform(eleSvg.getScreenCTM().inverse()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment