oxiphysics-softbody 0.1.0

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

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

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