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::{ConvexHullInput, TestInput};
use crate::collision_tasks::ShapeWideTester;
use crate::convex_contact_manifold::Convex4ContactManifoldWide;
use crate::shapes::{ConvexHullWide, SphereWide};
use crate::traits::PairWideTest;
use crate::{ConvexHullId, ShapeContainer, Sphere};
struct SphereConvexHullBench;
impl_bench!(
SphereConvexHullBench,
SphereWide,
ConvexHullWide,
Convex4ContactManifoldWide,
1
);
type InputType = TestInput<Sphere, ConvexHullInput>;
type BenchType = TestInput<Sphere, ConvexHullId>;
bench!(InputType,BenchType,SphereConvexHullBench,"sphere_convex_hull/",
<0,contact>,
<1,contact2>
);