#![allow(clippy::tabs_in_doc_comments)]
#[cfg(feature = "io")]
mod atlas;
mod features;
#[cfg(feature = "io")]
mod io;
#[cfg(feature = "mesh")]
mod mesh;
mod vertex;
#[cfg(feature = "io")]
pub use crate::{
atlas::*,
io::*
};
#[cfg(feature = "mesh")]
pub use crate::mesh::*;
pub use crate::{
features::*,
vertex::*
};