Crates.io | modelz |
lib.rs | modelz |
version | 0.1.5 |
source | src |
created_at | 2024-07-20 08:06:48.237918 |
updated_at | 2024-10-10 10:17:05.068883 |
description | A library to load various 3D file formats into a shared, in-memory representation |
homepage | |
repository | https://github.com/ventengine/Modelz |
max_upload_size | |
id | 1309299 |
size | 40,910 |
Modelz is a Rust library to load various 3D file formats into a shared, in-memory representation. With minimal depenencies and fast performance
You can fully load an 3D Model/Scene using just one line of code
let model = Model3D::load("model.gltf").except("Failed to load");
You can also specify a format Modelz should use
let model = Model3D::from_format("model", ModelFormat::OBJ).except("Failed to load")
Contributions are welcome!. If you'd like to help improve the library or add support for new formats, feel free to submit a pull request.
Modelz is inspired by the popular open-source library Assimp.