Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ngraph.forcelayout3d
Advanced tools
This is a force directed
graph layouter in 3D space. It is using oct tree as an n-body solver. This
repository is part of ngraph family, and
operates on ngraph.graph
data structure.
If two dimensions is enough please also checkout ngraph.forcelayout
First of all it's worth to mention all force directed algorithms are iterative. We need to perform multiple iterations of an algorithm, before graph starts looking aesthetically pleasing.
With that in mind, the easiest way to make graph look nice is:
// graph is an instance of `ngraph.graph` object.
var layout = require('ngraph.forcelayout3d')(graph);
for (var i = 0; i < ITERATIONS_COUNT; ++i) {
layout.step();
}
// now we can ask layout where each node/link is best positioned:
graph.forEachNode(function(node) {
console.log(layout.getNodePosition(node.id));
// Node position is pair of x,y,z coordinates:
// {x: ... , y: ... , z: ... }
});
graph.forEachLink(function(link) {
console.log(layout.getLinkPosition(link.id));
// link position is a pair of two positions:
// {
// from: {x: ..., y: ..., z: ...},
// to: {x: ..., y: ..., z: ...}
// }
});
Result of getNodePosition()
/getLinkPosition()
will be always the same for
the same node. This is true:
layout.getNodePosition(1) === layout.getNodePosition(1);
Reason for this is performance. If you are interested in storing positions somewhere else, you can do it and they still will be updated after each force directed layout iteration.
Sometimes it's desirable to tell layout algorithm not to move certain nodes.
This can be done with pinNode()
method:
var nodeToPin = graph.getNode(nodeId);
layout.pinNode(nodeToPin, true); // now layout will not move this node
If you want to check whether node is pinned or not you can use isNodePinned()
method. Here is an example how to toggle node pinning, without knowing it's
original state:
var node = graph.getNode(nodeId);
layout.pinNode(node, !layout.isNodePinned(node)); // toggle it
What if you still want to move your node according to some external factor (e.g.
you have initial positions, or user drags pinned node)? To do this, call setNodePosition()
method:
layout.setNodePosition(nodeId, x, y, z);
Like many other algorithms in ngraph
family, force layout monitors graph changes
via graph events.
It keeps layout up to date whenever graph changes:
var graph = require('ngraph.graph')(); // empty graph
var layout = require('ngraph.forcelayout3d')(graph); // layout of empty graph
graph.addLink(1, 2); // create node 1 and 2, and make link between them
layout.getNodePosition(1); // returns position.
If you want to stop monitoring graph events, call dispose()
method:
layout.dispose();
Since this is force directed layout, sometimes it's desirable to adjust physics settings. Please refer to ngraph.physics.simulator to see source code and simulator parameters. You can pass physics settings as a second argument to layout constructor.
var physicsSettings = {gravity: -1.2}; // construct physics simulator settings
// pass it as second argument to layout:
var layout = require('ngraph.forcelayout3d')(graph, physicsSettings);
You can always get current physics simulator from layout by checking layout.simulator
property. This is read only property.
If you find standard Euler integration producing too much errors and jitter, consider using verlet integration:
var physicsSettings = {integrator: 'verlet'};
// pass it as second argument to layout:
var layout = require('ngraph.forcelayout3d')(graph, physicsSettings);
Kudos to @annxingyuan for the PR.
Finally, it's often desirable to know how much space does our graph occupy. To
quickly get bounding box use getGraphRect()
method:
var rect = layout.getGraphRect();
// rect.x1, rect.y1, rect.z1 - left top back coordinates of bounding box
// rect.x2, rect.y2, rect.z2 - right bottom front coordinates of bounding box
With npm do:
npm install ngraph.forcelayout3d
MIT
I'd totally love it! Please email me, open issue here, tweet to me, or join discussion on gitter.
FAQs
Force directed graph layout in 3d
The npm package ngraph.forcelayout3d receives a total of 488 weekly downloads. As such, ngraph.forcelayout3d popularity was classified as not popular.
We found that ngraph.forcelayout3d 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.