oxiphysics-io 0.1.1

File I/O and serialization for the OxiPhysics engine
Documentation
//! # TriangleMesh - Trait Implementations
//!
//! This module contains trait implementations for `TriangleMesh`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

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

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