1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Reverse the direction/orientation of objects
use crate::objects::Objects;
mod cycle;
mod edge;
mod face;
/// Reverse the direction/orientation of an object
pub trait Reverse {
/// Reverse the direction/orientation of the object
#[must_use]
fn reverse(self, objects: &Objects) -> Self;
}