zoom_hit_nothing test

This commit is contained in:
Quaternions 2023-11-21 19:44:50 -08:00
parent 6d3ff8490d
commit 7ba94c0837

View File

@ -1677,3 +1677,12 @@ fn hit_the_ground_oblique(){
Time::ZERO Time::ZERO
),Some(Time::ONE_SECOND/2)); ),Some(Time::ONE_SECOND/2));
} }
#[test]
fn zoom_hit_nothing(){
hit_the_ground(Body::new(
Planar64Vec3::ONE*10,
Planar64Vec3::int(10,0,0),
Planar64Vec3::int(0,100,0),
Time::ZERO
),None);
}