draco_oxide_core/lib.rs
1//! `draco-oxide-core` holds the parts shared by both the draco-oxide encoder and
2//! decoder: the geometry/attribute data model, the numeric primitives
3//! (`NdVector`, index types, numeric traits), and the compression algorithms
4//! shared between encode and decode (`codec`).
5
6pub mod attribute;
7pub mod bit_coder;
8pub mod buffer;
9pub mod corner_table;
10pub mod mesh;
11pub mod point_cloud;
12pub mod point_cloud_builder;
13pub mod types;
14
15/// Compression algorithms shared between the encoder and decoder
16/// (entropy coding, prediction schemes, connectivity, headers).
17pub mod codec;
18
19pub mod utils;