verify face count in tests

This commit is contained in:
Quaternions 2025-02-25 12:02:42 -08:00
parent 1de624e284
commit 3f994ee2bb

@ -282,6 +282,7 @@ mod test{
Face{normal:integer::vec3::NEG_Z,dot:Planar64::ONE},
].into_iter().collect();
let faces=planes_to_faces(face_list).unwrap();
assert_eq!(faces.faces.len(),6);
dbg!(faces);
}
#[test]
@ -296,6 +297,7 @@ mod test{
Face{normal:integer::vec3::NEG_Z,dot:Planar64::EPSILON},
].into_iter().collect();
let faces=planes_to_faces(face_list).unwrap();
assert_eq!(faces.faces.len(),6);
dbg!(faces);
}
}