文件名称:point-in-svg-path:确定点是否在SVG路径中-从Snap.svg抄录的代码
文件大小:52KB
文件格式:ZIP
更新时间:2024-05-22 14:22:09
JavaScript
SVG路径中的点 确定点是否在SVG路径中-从代码 例子 检查单个点是否在单个闭合路径内: const { pointInSvgPath } = require ( 'point-in-svg-path' ) pointInSvgPath ( 'M80 80A 45 45, 0, 0, 0, 125 125L 125 80 Z' , 100 , 100 ) // true pointInSvgPath ( 'M80 230A 45 45, 0, 0, 1, 125 275L 125 230 Z' , 115 , 200 ) // false 检查哪些点与哪些路径相交: const { getPointsAndIntersectingPaths } = require ( 'point-in-svg-path' ) const results = getPointsAndInterse
【文件预览】:
point-in-svg-path-master
----.travis.yml(59B)
----index.js(27KB)
----package.json(744B)
----tests()
--------index.spec.js(4KB)
----package-lock.json(171KB)
----.npmignore(35B)
----.gitignore(30B)
----README.md(1KB)