oxiphysics-core 0.1.1

Core types, traits, and abstractions for the OxiPhysics engine
Documentation
//! # Bdf2 - Trait Implementations
//!
//! This module contains trait implementations for `Bdf2`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

#[allow(unused_imports)]
use super::functions::*;
use super::types::Bdf2;

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