From c8fdf253d7c95ee2563cf1612b55625af1e3194a Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Mon, 22 Sep 2025 13:24:37 -0700 Subject: [PATCH] fix: add six more missing edges --- app-proto/src/components/test_assembly_chooser.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-proto/src/components/test_assembly_chooser.rs b/app-proto/src/components/test_assembly_chooser.rs index 581aa6f..97dabd4 100644 --- a/app-proto/src/components/test_assembly_chooser.rs +++ b/app-proto/src/components/test_assembly_chooser.rs @@ -834,10 +834,10 @@ const_array!(ACRON554_COMMON: (&str, [f64; 3], bool, usize, &str) = [ ("Y_NW", [-0.104, 0.104, 1.019], F, 3, "B_NW"), ("Y_SE", [ 0.11, -0.11, 1.018], F, 3, "B_SE"), ("Y_SW", [-0.104, -0.11, 1.019], F, 3, "B_SW"), - ("C_N", [ 0., 1., RTPHIPH], P, 4, "Y_NE,Y_NW"), - ("C_W", [-1., 0., RTPHIPH], P, 4, "Y_NW,Y_SW"), - ("C_E", [ 1.003, -0.003, 1.454], F, 4, "B_NE,B_SE,Y_NE,Y_SE"), - ("C_S", [ 0.003, -1.003, 1.454], F, 4, "B_SE,B_SW,Y_SE,Y_SW"), + ("C_N", [ 0., 1., RTPHIPH], P, 4, "B_NE,B_NW,Y_NE,Y_NW"), + ("C_W", [-1., 0., RTPHIPH], P, 4, "B_NW,B_SW,Y_NW,Y_SW"), + ("C_E", [ 1.003, -0.003, 1.454], F, 4, "Z_E,B_NE,B_SE,Y_NE,Y_SE"), + ("C_S", [ 0.003, -1.003, 1.454], F, 4, "Z_S,B_SE,B_SW,Y_SE,Y_SW"), ("D_NE", [ 0.195, 0.186, 2.012], F, 5, "Y_NE,C_N,C_E"), ("D_NW", [-0.186, 0.186, 2.012], F, 5, "Y_NW,C_N,C_W"), ("D_SE", [ 0.195, -0.195, 2.011], F, 5, "Y_SE,C_E,C_S"),