Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
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, and the A-Frame component version (aframe-forcegraph-component).
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="//unpkg.com/3d-force-graph-vr/dist/3d-force-graph-vr.js"></script>
then
var myGraph = ForceGraphVR();
myGraph(<myDOMElement>);
ForceGraphVR()
.jsonUrl(<URL of JSON file to load graph data directly from, as an alternative to specifying graphData directly>)
.graphData(<data>)
.numDimensions(<number of dimensions, between [1,3]. default: 3>)
.nodeRelSize(<(number) node volume per value unit>)
.lineOpacity(<between [0,1]>)
.autoColorBy(<node object accessor property name, only affects nodes without a color field>)
.idField(<node object accessor property name. default: 'id'>)
.valField(<node object accessor property name. default: 'val'>)
.nameField(<node object accessor property name. default: 'name'>)
.colorField(<node object accessor property name. default: 'color'>)
.linkSourceField(<link object accessor property name. default: 'source'>)
.linkTargetField(<link object accessor property name. default: 'target'>)
.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: [
{
id: 'id1',
name: "name1",
val: 1
},
{
id: 'id2',
name: "name2",
val: 10
},
(...)
],
links: [
{
source: 'id1',
target: 'id2'
},
(...)
]
}
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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.