fj_kernel/algorithms/reverse/
mod.rs

1//! Reverse the direction/orientation of objects
2
3use crate::services::Services;
4
5mod cycle;
6mod face;
7
8/// Reverse the direction/orientation of an object
9pub trait Reverse: Sized {
10    /// Reverse the direction/orientation of the object
11    fn reverse(self, services: &mut Services) -> Self;
12}