8 releases

0.2.3 Sep 12, 2022
0.2.2 Mar 1, 2021
0.2.1 Feb 24, 2021
0.1.3 Dec 19, 2020
0.1.2 Sep 11, 2020

#1653 in Parser implementations

Download history 134/week @ 2024-01-01 193/week @ 2024-01-08 186/week @ 2024-01-15 163/week @ 2024-01-22 177/week @ 2024-01-29 205/week @ 2024-02-05 250/week @ 2024-02-12 298/week @ 2024-02-19 294/week @ 2024-02-26 166/week @ 2024-03-04 158/week @ 2024-03-11 164/week @ 2024-03-18 148/week @ 2024-03-25 195/week @ 2024-04-01 156/week @ 2024-04-08 182/week @ 2024-04-15

696 downloads per month

Apache-2.0 AND MIT

26KB
498 lines

Wavefront

crates.io crates.io

A Wavefront OBJ parser and utility crate.

[dependencies]
wavefront = "x.y.z"

Example

let model = wavefront::Obj::from_file("tests/ship.obj").unwrap();

for [a, b, c] in model.triangles() {
    // No index lookup required: wavefront handles this for you!
    println!("{:?} {:?} {:?}", a.position(), b.position(), c.position());
}

A parsec isn't a unit of time, Han

Features

  • Ergonomic API for parsing OBJs from files and readers.

  • Wrapper types that automatically perform indexing and hide the annoyances of the OBJ format if you just want to grab some triangles...

  • ...but allows you to dip into the nitty-gritty details of OBJ if you want to do that too.

  • Correct handling of complex polygons.

  • No dependencies

Roadmap

  • Materials and the MTL support.

  • Object, group, polygon, vertex and vertex attribute insertion

  • Saving

  • Arbitrary geometry support.

Why not [alternative]?

wavefront was born of a general feeling that the API of existing OBJ parsers were either unnecessarily verbose or didn't properly handle the heirarchical structure of the OBJ format. wavefront aims to couple correct handling of the format's features with a clean, terse API that allows you to jump straight to the thing you want to do: rendering your model.

License

wavefront is distributed under either of:

at the disgression of the user.

Dependencies

~1MB
~13K SLoC