plexus 0.0.0

3D mesh generation, manipulation, and buffering.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! **Plexus** is a library for generating, manipulating, and buffering 3D mesh
//! data.

#![allow(unknown_lints)] // Allow clippy lints.

extern crate arrayvec;
extern crate num;
#[cfg(test)]
extern crate ordered_float;

pub mod buffer;
pub mod generate;
pub mod graph;