obj-rs 0.6.2

Wavefront obj parser for Rust. It handles both 'obj' and 'mtl' formats.
Documentation
1
2
3
4
/// Parses &[&str] into Vec<f32>.
pub fn parse_args(args: &[&str]) -> Result<Vec<f32>, std::num::ParseFloatError> {
    args.iter().map(|arg| arg.parse()).collect()
}