meshellaneous 0.0.5

Miscellaneous Mesh utilities
Documentation
//! # Meshellaneous
//! Miscellaneous Mesh utilities

use glam::Vec3;

pub mod indexmesh;
pub mod plane;
pub mod traits;
pub mod triangle;
pub mod trimesh;

#[cfg(test)]
mod tests;

/// a line segment from [0] to [1]
pub type Segment = [Vec3; 2];

/// a ray at .0 pointing towards .1
pub type Ray = (Vec3, Vec3);