#3d #mesh #obj #graphics #computer-vision #parser

aloe-ex-assets

A Rust crate for parsing and managing 3D Wavefront OBJ files, featuring robust mesh, texture, and material handling for use in graphics applications. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 3, 2025

#21 in #obj

45 downloads per month
Used in 2 crates

GPL-3.0 license

1.5MB
12K SLoC

Aloe-ex-assets

Aloe-ex-assets is a versatile Rust library designed to facilitate the parsing and handling of 3D Wavefront OBJ file formats. This crate provides essential utilities for 3D graphics applications, particularly those involving procedural content generation and rendering.

Features

  • Wavefront OBJ File Parsing: Contains robust implementations for parsing 3D object models from the common Wavefront .obj format. It includes structures for vertices, texture coordinates, and materials.
  • Material Handling: Manages materials associated with 3D shapes, including diffuse, ambient, and specular properties.
  • OBJ Shape Representation: Structures to represent and manipulate 3D shapes and their meshes within an OBJ file.
  • Utility Functions: Miscellaneous functions for creating color schemes, managing assets, and generating random values.
  • Bouncing Numbers: Implements numerical oscillators for procedural animations or simulations.

Getting Started

Installation

Add the following to your Cargo.toml:

[dependencies]
aloe-ex-assets = "0.1.0"

Usage

use aloe_ex_assets::WavefrontObjFile;

let mut obj_file = WavefrontObjFile::default();
obj_file.load("path/to/model.obj").expect("Failed to load OBJ file");

for shape in &obj_file.shapes {
    println!("Parsed shape: {}", shape.name);
}

Contributing

Contributions are welcome! Please feel free to submit a pull request or issue.

License

Licensed under the GPL-3.0. See LICENSE for details.


Note: This README.md file was generated by an AI model and may not be 100% accurate, however it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~38MB
~618K SLoC