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.
gl-cone3d
Advanced tools
Visualization module for vector fields.
var createScene = require('gl-plot3d')
var createConePlot = require('gl-cone3d')
var createMesh = createConePlot.createConeMesh
var wind = require('dataset-wind')
var scene = createScene()
var bounds = [];
var conePlot = createConePlot({
positions: wind.positions,
vectors: wind.vectors,
coneSize: 4,
colormap: 'portland'
}, bounds)
var mesh = createMesh(gl, conePlot)
scene.add(mesh)
Try out the example in your browser
npm i gl-cone3d
var conePlot = require('gl-cone3d')(params, bounds)
Creates a cone plot of a vector field.
params
is an object that has the following properties:
positions
(Required) An array of positions determining the location of the cones, encoded as arraysvectors
(Required) An array of vectors for the vector field, encoded as arraysmeshgrid
Meshgrid for the vectors data array. Given as three arrays of numbers [xcoords, ycoords, zcoords]. E.g. meshgrid: [[1,2,3], [-1,0,1], [0,10,20,30,40,50]].coneSize
Size of the cones, scaled so that the reference cone size for the maximum vector magnitude is 1absoluteConeSize
Size of the cones, scaled so that the reference cone size for vector magnitude 1 is one grid unit.coneOffset
The position of the cone with regard to the cone location. Ranges from 0 to 1 where 0 puts the center of the cone base at the cone location, and 1 puts the tip at the cone location.colormap
Colormap for the cone plot.Returns A cone plot object that can be passed to gl-mesh3d.
(c) 2013-2017 Mikola Lysenko, Ilmari Heikkinen. MIT License
FAQs
3D cone plot
The npm package gl-cone3d receives a total of 17,585 weekly downloads. As such, gl-cone3d popularity was classified as popular.
We found that gl-cone3d demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 15 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.