Building a 3D Archives Management System with Three.js:Robot Retrieval, Inventory, and Inspection

Modern archives facilities require sophisticated visualization and automation systems to manage dense storage configurations effectively. This system leverages WebGL technology through Three.js to create digital twin representations of archives rooms, enabling robot-asissted retrieval, automated inventory scanning, manual search workflows, and ...

Posted on Tue, 21 Jul 2026 16:30:12 +0000 by AbydosGater

Building a 3D Warehouse and Container Yard Digital Twin with WebGL and Three.js

This implementation focuses on a digital twin system for a warehouse and container yard, covering both indoor and outdoor storage areas. The system integrates data from RFID, manual entry, and vehicle positioning systems to visualize assets and operations in 3D. External Yard and Container Information Hovering over containers or vehicles trigge ...

Posted on Tue, 14 Jul 2026 16:54:22 +0000 by leeandrew

Implementing 3D Data Center Fire Suppression Visualization with Three.js and WebGL

Context: Data Center Fire Suppression Requirements Data centers house sensitive electronic infrastructure where traditional water-based suppression poses severe risks of short circuits, hardware degradation, and data loss. Consequently, inert gas suppression systems (e.g., FM-200, IG-541) are standard. These agents extinguish fires by displacin ...

Posted on Mon, 13 Jul 2026 17:07:08 +0000 by ThinkGeekness

Creating 3D Smart Campus Visualizations with WebGL and Three.js

Technical Implementation of 3D Campus Visualization Core Components The implementation consists of several key technical components: Base Grid Construction - The foundation for all 3D elements Environmental Effects - Surrounding visual elements Road Animation - Dynamic path visualization Building Implementatino - Structure creation and renderi ...

Posted on Wed, 08 Jul 2026 17:28:10 +0000 by wiztek2000

Building a 3D Smart Photovoltaic Visualization System with WebGL (Three.js)

Overview Energy is a critical foundation for civilization and development. From the Stone Age to modern civilization, our energy applications have advanced, but we also face the crisis and fear of energy depletion. Developing and utilizing renewible energy is the primary solution to this challenge. China has been following a practical and susta ...

Posted on Tue, 16 Jun 2026 17:33:54 +0000 by Havery Jay

Implementing Industrial Digital Twins with Three.js: Interactive 3D Visualization and Real-time Data Integration

Digital twin implementations for industrial environments consist of three primary technical layers: data acquisition via sensors, network transmission and storage, and visual presentation. This discussion focuses on the presentation layer using WebGL (Three.js) for browser-based 3D visualization. Industrial Park Overview and Model Rendering Cre ...

Posted on Wed, 03 Jun 2026 16:21:03 +0000 by RonHam

Three.js Framework for WeChat Mini Game Development

Project Structure Overview The core implementation utilizes Three.js for 3D rendering in WeChat mini games. The project organization includes: game.json, project.config.json: WeChat mini-game configuration files game.js: Main application entry point workers/: Web Workers for enemy AI calculations units/: Utility functions and math operations m ...

Posted on Thu, 28 May 2026 18:45:31 +0000 by vikaspa

Drawing 3D Cylinders in p5.js with cylinder()

cylinder() is a built-in function in p5.js for rendering 3D cylinders. The geometry consists of two circular caps (top and bottom) and a curved lateral surface, all constructed from triangular faces—a standard approach in 3D graphics. Important: This function only works when the canvas is initialized in WebGL mode. Attempting to use it in the d ...

Posted on Mon, 25 May 2026 21:51:53 +0000 by iacataca

Developing 3D Grain Silos and Warehouse Monitoring Systems with Three.js

Feature Overview Render a 3D layout of grain storage facilities. Switch between first-person and third-person camera perspectives. Simulate barn door opening and closing animations. Animate grain transport vehicles entering and leaving the site. Support VR-style viewing modes. Implementation Details Displaying Storage Information Show storage ...

Posted on Thu, 21 May 2026 21:56:38 +0000 by sureshmaharana

Creating and Animating 3D Boxes in p5.js with box()

The box() function is the simplest03 way to generate a 3D solid in p5.js. It produces a cuboid (or cube) with six rectangular faces. All drawing must happen inside a WebGL canvas, otherwise the object will not appear. function setup() { createCanvas(400, 400, WEBGL); } function draw() { background(240); orbitControl(); box(); } Drag t ...

Posted on Wed, 20 May 2026 18:42:32 +0000 by orionellis