mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
518 B
518 B
OBJLoader
This loader handles the OBJ half of the classic Wavefront OBJ/MTL format. The OBJ format is a simple ASCII format that lists vertices, normals and faces on successive lines.
References
Usage
import {OBJLoader, loadFile} from 'loaders.gl';
loadFile(url, OBJLoader).then(data => {
// Application code here
...
});
Loader Options
N/A
Data Loaded
positions-normals-faces-