oxiphysics-collision 0.1.1

Collision detection algorithms for the OxiPhysics engine
Documentation
//! # TimestampedGjkRegistry - Trait Implementations
//!
//! This module contains trait implementations for `TimestampedGjkRegistry`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

#[allow(unused_imports)]
use super::functions::*;
use super::types::{EvictionPolicy, TimestampedGjkRegistry};

impl Default for TimestampedGjkRegistry {
    fn default() -> Self {
        Self::new(EvictionPolicy::default())
    }
}