Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@luma.gl/engine
Advanced tools
@luma.gl/engine is a high-performance WebGL2 framework designed for GPU-powered data visualization and graphics rendering. It provides a suite of tools and abstractions to simplify the creation of complex 3D scenes, animations, and visual effects.
Creating a WebGL Context
This feature allows you to create and manage a WebGL context using the AnimationLoop class. The onInitialize method is used to set up the WebGL context, and the onRender method is used to render each frame.
const {AnimationLoop} = require('@luma.gl/engine');
const animationLoop = new AnimationLoop({
onInitialize: ({gl}) => {
// Initialize WebGL context
},
onRender: ({gl}) => {
// Render frame
}
});
animationLoop.start();
Loading and Displaying a 3D Model
This feature allows you to load and display a 3D model using the Model and Geometry classes. You can define the vertex and fragment shaders, as well as the geometry attributes like positions and normals.
const {Model, Geometry} = require('@luma.gl/engine');
const model = new Model(gl, {
vs: `...`, // Vertex shader
fs: `...`, // Fragment shader
geometry: new Geometry({
attributes: {
positions: new Float32Array([...]),
normals: new Float32Array([...])
}
})
});
model.draw();
Handling User Input
This feature allows you to handle user input events such as mouse clicks and keyboard presses using the EventManager class. You can attach event listeners to the canvas and respond to user interactions.
const {EventManager} = require('@luma.gl/engine');
const eventManager = new EventManager(canvas);
eventManager.on('click', (event) => {
console.log('Canvas clicked', event);
});
Three.js is a popular JavaScript library for creating 3D graphics in the browser. It provides a higher-level abstraction compared to @luma.gl/engine, making it easier to create complex scenes and animations with less code. However, it may offer less control over low-level WebGL operations.
Babylon.js is another powerful 3D engine for rendering graphics in the browser. It offers a comprehensive set of features for game development, including physics, animations, and advanced materials. Compared to @luma.gl/engine, Babylon.js provides more out-of-the-box functionality but may be less flexible for custom rendering techniques.
PixiJS is a 2D rendering engine that can also handle some 3D graphics. It is optimized for performance and ease of use, making it a good choice for creating interactive applications and games. While it is not as focused on 3D rendering as @luma.gl/engine, it offers a simpler API for 2D and basic 3D graphics.
FAQs
3D Engine Components for luma.gl
The npm package @luma.gl/engine receives a total of 73,924 weekly downloads. As such, @luma.gl/engine popularity was classified as popular.
We found that @luma.gl/engine demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.