diff --git a/crates/fj-kernel/src/operations/build/mod.rs b/crates/fj-kernel/src/operations/build/mod.rs index fe6010c3b..273ea0fee 100644 --- a/crates/fj-kernel/src/operations/build/mod.rs +++ b/crates/fj-kernel/src/operations/build/mod.rs @@ -1,15 +1,6 @@ -mod cycle; -mod edge; -mod face; -mod shell; -mod solid; -mod surface; - -pub use self::{ - cycle::BuildCycle, - edge::BuildHalfEdge, - face::{BuildFace, Polygon}, - shell::{BuildShell, TetrahedronShell}, - solid::{BuildSolid, Tetrahedron}, - surface::BuildSurface, -}; +pub mod cycle; +pub mod edge; +pub mod face; +pub mod shell; +pub mod solid; +pub mod surface; diff --git a/crates/fj-kernel/src/operations/mod.rs b/crates/fj-kernel/src/operations/mod.rs index 313bdeaae..f52c82179 100644 --- a/crates/fj-kernel/src/operations/mod.rs +++ b/crates/fj-kernel/src/operations/mod.rs @@ -7,8 +7,12 @@ mod update; pub use self::{ build::{ - BuildCycle, BuildFace, BuildHalfEdge, BuildShell, BuildSolid, - BuildSurface, Polygon, Tetrahedron, TetrahedronShell, + cycle::BuildCycle, + edge::BuildHalfEdge, + face::{BuildFace, Polygon}, + shell::{BuildShell, TetrahedronShell}, + solid::{BuildSolid, Tetrahedron}, + surface::BuildSurface, }, insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes}, join::JoinCycle,