
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
gl-axes3d
Advanced tools
Draws axes for 3D scenes:
<img src=https://raw.github.com/gl-vis/gl-axes3d/master/example/axes.png>
Here is a simple example showing how to use gl-axes to visualize the extents of an isosurface:
//Load shell
var shell = require("gl-now")({ clearColor: [0,0,0,0] })
var camera = require("game-shell-orbit-camera")(shell)
//Mesh creation tools
var createMesh = require("gl-simplicial-complex")
var polygonize = require("isosurface").surfaceNets
var createAxes = require("gl-axes")
//Matrix math
var mat4 = require("gl-matrix").mat4
//Bounds on function to plot
var bounds = [[-5,-5,-5], [5,5,5]]
//Plot level set of f = 0
function f(x,y,z) {
return x*x + y*y + z*z - 2.0
}
//State variables
var mesh, axes
shell.on("gl-init", function() {
var gl = shell.gl
//Set up camera
camera.lookAt(bounds[1], [0,0,0], [0, 1, 0])
//Create mesh
mesh = createMesh(gl, polygonize([64, 64, 64], f, bounds))
//Create axes object
axes = createAxes(gl, {
bounds: bounds
})
})
shell.on("gl-render", function() {
var gl = shell.gl
gl.enable(gl.DEPTH_TEST)
//Compute camera parameters
var cameraParameters = {
view: camera.view(),
projection: mat4.perspective(
mat4.create(),
Math.PI/4.0,
shell.width/shell.height,
0.1,
1000.0)
}
//Draw mesh
mesh.draw(cameraParameters)
//Draw axes
axes.draw(cameraParameters)
})
You can play with this demo yourself on requirebin.
npm install gl-axes3d
var axes = require("gl-axes3d")(gl[, params])Creates an axes object.
gl is a WebGL contextparams is an object with the same behavior as axes.updateReturns A new glAxes object for drawing the axes.
axes.draw(camera)Draws the axes object with the given camera parameters. The camera object can have the following properties:
model - Is the model matrix for the axes object (default identity)view - Is the view matrix for the axes (default identity)projection - Is the projection matrix for the axes (default identity)All camera matrices are in 4x4 homogeneous coordinates and encoded as length 16 arrays as done by gl-matrix.
axes.update(params)Updates the parameters of the axes object using the properties in params. These are grouped into the following categories:
bounds the bounding box for the axes object, represented as a pair of 3D arrays encoding the lower and upper bounds for each component. Default is [[-10,-10,-10],[10,10,10]]tickSpacing either a number or 3d array representing the spacing between the tick lines for each axis. Default is 0.5ticks Alternatively, you can specify custom tick labels for each axis by passing in an array of 3 arrays of tick markings. Each tick marking array is an array of objects with the properties x and text which denote the position on the tick axis and the text of the tick label respectively.tickEnable a boolean value (or array of boolean values) which selects whether the tick text is drawn. Default truetickFont a string (or array of strings) encoding the font style for the tick text. Default 'sans-serif'tickSize the size of the font text in pixel coordinates. Default is computed from tick spacing.tickAngle a number (or array of numbers) encoding the angle of the tick text with the vertical axis in radians. Default 0tickColor a color (or array of colors) indicating the color of the text for each tick axis. Default [0,0,0]tickPad a number (or array of numbers) encoding the world coordinate offset of the tick labels from tick marks. Default 1labelEnable a boolean value or array of booleanlabelText a 3D array encoding the labels for each of the 3 axes. Default is ['x', 'y', 'z']labelFont a string (or array of strings) representing the font for each axis. Default 'sans-serif'labelSize the size of the label text in pixel coordinates. Default is computed from tick spacinglabelAngle a number (or array of numbers) encoding the angle of the label text with the vertical axis in radians. Default 0labelColor a color array (or array of color arrays) encoding the color of the label for each axis. Default [0,0,0]labelPad a number (or array of numbers) encoding the world coordinate offset of the labels from the data axes. Default 1.5lineEnable a boolean (or array of booleans) determining which of the 3 axes tick lines to show. Default is truelineWidth a number (or array of numbers) determining the width of the axis lines in pixel coordinates. Default is 1lineMirror a boolean (or array of booleans) describing which axis lines to mirror. Default is falselineColor a color array (or array of color arrays) encoding the color of each axis line. Default is [0,0,0]lineTickEnable a boolean (or array of booleans) which determines whether or not to draw the line ticks. Default is falselineTickMirror a boolean (or array of booleans) which determines whether the line ticks will be mirrored (similar behavior to lineMirror). Default is falselineTickLength a number (or array of numbers) giving the length of each axis tick in data coordinates. If this number is positive, the ticks point outward. If negative, the ticks point inward. If 0, the tick marks are not drawn. Default 0lineTickWidth a number (or array of numbers) giving the width of the tick lines pixel coordinates. Default 1lineTickColor a color (or array of colors) giving the color of the line ticks. Default [0,0,0]gridEnable a boolean (or array of booleans) determining which grid lines to draw. Default is truegridWidth a number (or array of numbers) giving the width of the grid lines in pixel units. Default is 1gridColor a color array (or array of color arrays) giving the color of the grid lines for each axis. Default is [0,0,0]zeroEnable a boolean (or array of booleans) which describes which zero lines to draw. Default is truezeroLineColor a color array (or array of color arrays) giving the color of the zero line. Default is [0,0,0]zeroLineWidth a number (or array of numbers) giving the width of the zero line. Default is 2backgroundEnable a boolean (or array of booleans) describing which background plane to draw. Default is falsebackgroundColor the color of each background plane. Default is [0.8,0.8,0.8,0.5]axes.dispose()Releases all resources associated with this axes object.
(c) 2014 Mikola Lysenko. MIT License
FAQs
3D axes for WebGL
The npm package gl-axes3d receives a total of 12,121 weekly downloads. As such, gl-axes3d popularity was classified as popular.
We found that gl-axes3d demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 19 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.