Consolidate operations in dedicated module

This commit is contained in:
Hanno Braun 2025-02-18 20:22:01 +01:00
parent c967076571
commit 65df984746
8 changed files with 6 additions and 5 deletions

View File

@ -6,6 +6,7 @@ mod geometry;
mod math;
mod model;
mod operation;
mod operations;
mod render;
mod topology;
mod view;

View File

@ -2,7 +2,7 @@ use crate::{
geometry::Sketch,
math::{Bivector, Plane, Point, Vector},
operation::{Handle, HandleAny},
topology::sweep::SweepExt,
operations::sweep::SweepExt,
};
pub fn model() -> HandleAny {

View File

@ -0,0 +1,4 @@
pub mod connect;
pub mod flip;
pub mod sweep;
pub mod translate;

View File

@ -1,7 +1,3 @@
pub mod connect;
pub mod face;
pub mod flip;
pub mod solid;
pub mod sweep;
pub mod translate;
pub mod vertex;