draco-rs 0.1.0

Rust-bindings to the c++ draco library, for compressing and decompressing 3D geometric meshes and point clouds.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod bindgen;
mod converter;
pub mod pointcloud;

pub mod prelude {
    pub mod ffi {
        pub use crate::bindgen::prelude::ffi::*;
        // pub use crate::bindgen::prelude::ffi::draco_extra;
        // pub use crate::bindgen_extra::prelude::ffi::draco_extra;
    }
    pub use crate::converter::StatusOr;
}