From 4ec732d0bb85aedf34569e5448c30684cd2f3ecb Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 9 Feb 2024 13:56:35 +0100 Subject: [PATCH] Update module name Looks like I forgot to do this, when I renamed `Edge` to `HalfEdge` a while ago. --- .../fj-core/src/operations/update/{edge.rs => half_edge.rs} | 0 crates/fj-core/src/operations/update/mod.rs | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename crates/fj-core/src/operations/update/{edge.rs => half_edge.rs} (100%) 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, };