diff --git a/app-proto/src/components/test_assembly_chooser.rs b/app-proto/src/components/test_assembly_chooser.rs index 518a85c..85f30b0 100644 --- a/app-proto/src/components/test_assembly_chooser.rs +++ b/app-proto/src/components/test_assembly_chooser.rs @@ -931,21 +931,21 @@ fn load_554aug2(assembly: &Assembly) { oct_verts.push(pt_rc.clone()); let incidence = InversiveDistanceRegulator::new( [face_rc.clone(), pt_rc.clone()]); - incidence.set_to(0.0); + // incidence.set_to(0.0); assembly.insert_regulator(Rc::new(incidence)); // And regulate the length to the other vertices of the octagon for offset in 1..OCT_N_DIAG { if offset <= oct_index { let dist = InversiveDistanceRegulator::new( [oct_verts[oct_index - offset].clone(), pt_rc.clone()]); - dist.set_to(OCT_DIST[offset]); + if offset == 1 { dist.set_to(OCT_DIST[offset]); } assembly.insert_regulator(Rc::new(dist)); } if offset < OCT_LONG && oct_index + offset >= OCT_N { let forward = oct_index + offset - OCT_N; let dist = InversiveDistanceRegulator::new( [oct_verts[forward].clone(), pt_rc.clone()]); - dist.set_to(OCT_DIST[offset]); + if offset == 1 { dist.set_to(OCT_DIST[offset]); } assembly.insert_regulator(Rc::new(dist)); } }