
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
svg-intersections
Advanced tools
A library of intersection algorithms covering all SVG shape types
A library of intersection algorithms covering all SVG shape types.
Possible to intersect rotated/scaled/skewed shapes.
npm install svg-intersections
This module exports two functions:
The intersect
function takes two shapes as an input an returns an result
object providing a result status, and all intersection points of the two shapes.
intersect (shape1, shape2)
The shape
function wraps the necessary input parameters for each of
the two shapes. It requires the SVG element name of the shape as a string
and an object of the SVG element's attributes.
shape (svgElementName, svgAttributes)
Example 1:
var svgIntersections = require('svg-intersections');
var intersect = svgIntersections.intersect;
var shape = svgIntersections.shape;
var intersections = intersect(
shape("circle", { cx: 0, cy: 0, r: 50 }),
shape("rect", { x: 0, y: 0, width: 60, height: 30 })
);
The implementation is based on the intersection procedures by Kevin Lindsey (http://www.kevlindev.com) with contributions by Robert Benko (http://www.quazistax.com).
FAQs
A library of intersection algorithms covering all SVG shape types
The npm package svg-intersections receives a total of 21,169 weekly downloads. As such, svg-intersections popularity was classified as popular.
We found that svg-intersections demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.