use glam_det::nums::f32x4;
use glam_det::{UnitQuatx4, Vec3x4};
use paste::paste;
use test::Bencher;
use crate::collision_tasks::benches::common::{BenchShapePairTest, WithContainer};
use crate::collision_tasks::tests::common::TestInput;
use crate::collision_tasks::ShapeWideTester;
use crate::convex_contact_manifold::Convex4ContactManifoldWide;
use crate::shapes::SphereWide;
use crate::traits::PairWideTest;
use crate::{ShapeContainer, Sphere};
struct SpherePairBench;
impl_bench!(
SpherePairBench,
SphereWide,
SphereWide,
Convex4ContactManifoldWide,
1
);
type InputType = TestInput<Sphere, Sphere>;
bench!(InputType,SpherePairBench,"sphere_sphere/",
<1,coincide>,
<2,nocollide>,
<3,tangent>
);