fj-kernel 0.46.0

Early-stage, next-generation, code-first CAD application. Because the world needs another CAD program.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Reverse the direction/orientation of objects

use crate::services::Services;

mod cycle;
mod face;

/// Reverse the direction/orientation of an object
pub trait Reverse: Sized {
    /// Reverse the direction/orientation of the object
    fn reverse(self, services: &mut Services) -> Self;
}