half_edge_mesh 1.1.8

A basic implementation of the half-edge mesh data structure. It has a bunch of the functions you probably want in a half-edge mesh, but probably not all of them. I'm intending to add more methods and mutation techniques, as I need them for other projects or as I think of them. Pull requests welcome!
Documentation
// TODO: use clippy linter on this code

extern crate cgmath;
extern crate approx;

pub mod ptr;
pub mod edge;
pub mod vert;
pub mod face;
pub mod iterators;
pub mod mesh;
pub mod util;

pub use self::mesh::HalfEdgeMesh;
pub use self::edge::Edge;
pub use self::vert::Vert;
pub use self::face::Face;

// Export the pointer types too, in case you need them
pub use self::ptr::*;

// Export relevant iterators and traits
pub use self::iterators::ToPtrVec;