From 2f7fcaa3be59644924cabc0ccd24b1170e14f8a9 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 9 Aug 2024 22:50:49 +0200 Subject: [PATCH] Update validation error message --- .../checks/coincident_half_edges_are_not_siblings.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/fj-core/src/validation/checks/coincident_half_edges_are_not_siblings.rs b/crates/fj-core/src/validation/checks/coincident_half_edges_are_not_siblings.rs index afe59e2be..4c3b60505 100644 --- a/crates/fj-core/src/validation/checks/coincident_half_edges_are_not_siblings.rs +++ b/crates/fj-core/src/validation/checks/coincident_half_edges_are_not_siblings.rs @@ -79,8 +79,9 @@ impl fmt::Display for CoincidentHalfEdgesAreNotSiblings { f, "Half-edge 1: {:#?}\n\ Half-edge 2: {:#?}\n\ + Points: {:#?}\n\ Distances: {:#?}", - self.half_edge_a, self.half_edge_b, self.distances + self.half_edge_a, self.half_edge_b, self.points, self.distances )?; Ok(())