oxiphysics-python 0.1.0

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

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

impl Default for IncrementalExportConfig {
    fn default() -> Self {
        Self {
            min_speed_threshold: 0.0,
            max_batch_size: 1000,
            include_sleeping: true,
        }
    }
}