From c6df4c9d1842c34224155763e963bcb0d3efcf09 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 18 Aug 2023 13:09:21 +0200 Subject: [PATCH] Update documentation of `ShellValidationError` --- crates/fj-core/src/validate/shell.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/crates/fj-core/src/validate/shell.rs b/crates/fj-core/src/validate/shell.rs index 8435ca6c9..5c522a577 100644 --- a/crates/fj-core/src/validate/shell.rs +++ b/crates/fj-core/src/validate/shell.rs @@ -35,12 +35,11 @@ pub enum ShellValidationError { )] CurveCoordinateSystemMismatch(Vec), - /// [`Shell`] contains global_edges not referred to by two half-edges + /// [`Shell`] is not watertight #[error("Shell is not watertight")] NotWatertight, - /// [`Shell`] contains half-edges that are coincident, but refer to - /// different global_edges + /// [`Shell`] contains edges that are coincident, but not identical #[error( "`Shell` contains `Edge`s that are coincident but refer to different \ `Curve`s\n\ @@ -49,7 +48,7 @@ pub enum ShellValidationError { )] CoincidentEdgesNotIdentical(Handle, Handle), - /// [`Shell`] contains half-edges that are identical, but do not coincide + /// [`Shell`] contains edges that are identical, but do not coincide #[error( "Shell contains `Edge`s that are identical but do not coincide\n\ Edge 1: {edge_a:#?}\n\