Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
GLU tesselator ported to Javascript, performs polygon boolean operations and triangulation
The tess2.js library performs polygon boolean operations and tesselation to triangles and convex polygons. It is a port of libtess2, which is turn is a cleaned up version of the stock GLU tesselator. The original code was written Eric Veach in 1994. The greatest thing about tess2.js is that it handles all kinds of input like self-intersecting polygons or any nomber of holes and contours.
Installation:
npm install tess2 --save
Example use:
var Tess2 = require('tess2');
// Define input
var ca = [0,0, 10,0, 5,10];
var cb = [0,2, 10,2, 10,6, 0,6];
var contours = [ca,cb];
// Tesselate
var res = Tess2.tesselate({
contours: contours,
windingRule: Tess2.WINDING_ODD,
elementType: Tess2.POLYGONS,
polySize: 3,
vertexSize: 2
});
// Use vertices
for (var i = 0; i < res.vertices.length; i += 2) {
drawVertex(res.vertices[i], res.vertices[i+1]);
}
// Use triangles
for (var i = 0; i < res.elements.length; i += 3) {
var a = res.elements[i], b = res.elements[i+1], c = res.elements[i+2];
drawTriangle(res.vertices[a*2], res.vertices[a*2+1],
res.vertices[b*2], res.vertices[b*2+1],
res.vertices[c*2], res.vertices[c*2+1]);
}
Further reading: http://www.glprogramming.com/red/chapter11.html
The build/tess2.js
works with RequireJS, CommonJS, or "no-module" patterns, like a simple script tag:
<script src="tess2.js"></script>
<script>
var res = Tess2.tesselate({ ... });
//same as above...
</script>
To build the UMD file, enter the following:
npm run build
FAQs
GLU tesselator ported to Javascript, performs polygon boolean operations and triangulation
The npm package tess2 receives a total of 11,954 weekly downloads. As such, tess2 popularity was classified as popular.
We found that tess2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.