Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
3d-force-graph-vr
Advanced tools
A web component to represent a graph data structure in virtual reality using a force-directed iterative layout. Uses A-Frame for VR rendering and d3-force-3d for the layout physics engine.
See also the WebGL 3D version.
Live example: https://bl.ocks.org/vasturiano/972ca4f3e8e074dacf14d7071aad8ef9
npm install
npm run build
import { default as ForceGraphVR } from '3d-force-graph-vr';
or
var ForceGraphVR = require('3d-force-graph-vr');
or even
<script src="/path/to/dist/3d-force-graph-vr.js"></script>
then
var myGraph = ForceGraphVR();
myGraph(<myDOMElement>);
ForceGraphVR()
.width(<px>)
.height(<px>)
.graphData(<data>)
.nodeRelSize(<(number) node volume per value unit>)
.lineOpacity(<between [0,1]>)
.valAccessor(<function(node) to extract numeric value. default: node.val>)
.nameAccessor(<function(node) to extract name string. default: node.name>)
.colorAccessor(<function(node) to extract color hex number. default: node.color>)
.warmUpTicks(<number of layout engine cycles to run before start rendering. default: 0>)
.coolDownTicks(<# frames to stop engine. default: Infinity>)
.coolDownTime(<ms to stop engine. default: 15000>)
.resetProps()
{
nodes: {
id1: {
name: "name1",
val: 1
},
id2: {
name: "name2",
val: 10
},
(...)
},
links: [
['id1', 'id2'], // [from, to]
(...)
]
}
FAQs
UI component for a 3D force-directed graph in VR
The npm package 3d-force-graph-vr receives a total of 9,045 weekly downloads. As such, 3d-force-graph-vr popularity was classified as popular.
We found that 3d-force-graph-vr demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.