diff --git a/crates/fj-core/src/operations/update/edge.rs b/crates/fj-core/src/operations/update/half_edge.rs similarity index 100% rename from crates/fj-core/src/operations/update/edge.rs rename to crates/fj-core/src/operations/update/half_edge.rs diff --git a/crates/fj-core/src/operations/update/mod.rs b/crates/fj-core/src/operations/update/mod.rs index b906727bf3..dae5ac4c0f 100644 --- a/crates/fj-core/src/operations/update/mod.rs +++ b/crates/fj-core/src/operations/update/mod.rs @@ -1,15 +1,15 @@ //! Operations to update objects mod cycle; -mod edge; mod face; +mod half_edge; mod region; mod shell; mod sketch; mod solid; pub use self::{ - cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace, + cycle::UpdateCycle, face::UpdateFace, half_edge::UpdateHalfEdge, region::UpdateRegion, shell::UpdateShell, sketch::UpdateSketch, solid::UpdateSolid, };