oxiphysics-geometry 0.1.0

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

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

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