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;
use crate::traits::PairWideTest;
use crate::{ConvexHullId, ShapeContainer};
struct ConvexHullConvexHullBench;
impl_bench!(
ConvexHullConvexHullBench,
ConvexHullWide,
ConvexHullWide,
Convex4ContactManifoldWide,
4
);
type InputType = TestInput<ConvexHullInput, ConvexHullInput>;
type BenchType = TestInput<ConvexHullId, ConvexHullId>;
bench!(InputType , BenchType,ConvexHullConvexHullBench,"convex_hull_convex_hull/",
<0,no_collide>,
<0,random>
);