meshlite 0.2.0

meshlite is a library with focus on 3D mesh generating and processing in rust language. Currently, it’s been used in Dust3D project as the core library of mesh generating. https://dust3d.org
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate cgmath;
extern crate fnv;
extern crate petgraph;
extern crate smallvec;

pub mod bmesh;
pub mod debug;
pub mod iterator;
pub mod mesh;
pub mod primitives;
pub mod skeletonmesh;
pub mod subdivide;
pub mod triangulate;
pub mod util;
pub mod wavefront;
pub mod wrap;