A simple 3d loader written in Rust. This project does not attempt to become the fastest loading 3D library, it serves as a simple library to quickly get started with the interesting (fun) stuff. Currently, the project supports Obj and glTF files but adding more formats should be easy.
```rust use l3d::prelude::*;
// Create an instance let instance = LoadInstance::new() // Adds default loaders (gLTF and obj files) .with_default();
// Load file
match instance.load(LoadOptions {
path: PathBuf::from("path/to/my/file.gltf.obj"),
..Default::default()
}) {
// Single mesh
Mesh(descriptor) => {
// descriptor.vertices: Vec<[f32; 4]>,
// descriptor.normals: Vec<[f32; 3]>,
// descriptor.uvs: Vec<[f32; 2]>,
// descriptor.tangents: Vec<[f32; 4]>,
// descriptor.material_ids: Vec