meshellaneous 0.0.5

Miscellaneous Mesh utilities
Documentation
1
2
3
4
5
6
7
8
use super::IndexMesh;

impl IndexMesh {
    /// Seperates any loose parts into there own mesh
    pub fn separate_by_loose_parts(self) -> Vec<Self> {
        todo!();
    }
}