mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-05 10:28:27 +00:00
Consolidate operations in dedicated module
This commit is contained in:
parent
c967076571
commit
65df984746
@ -6,6 +6,7 @@ mod geometry;
|
||||
mod math;
|
||||
mod model;
|
||||
mod operation;
|
||||
mod operations;
|
||||
mod render;
|
||||
mod topology;
|
||||
mod view;
|
||||
|
@ -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 {
|
||||
|
4
experiments/2024-12-09/src/operations/mod.rs
Normal file
4
experiments/2024-12-09/src/operations/mod.rs
Normal file
@ -0,0 +1,4 @@
|
||||
pub mod connect;
|
||||
pub mod flip;
|
||||
pub mod sweep;
|
||||
pub mod translate;
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user