Skip to main content

oxiphysics_geometry/sphere_packing/
rsaconfig_traits.rs

1//! # RsaConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `RsaConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::RsaConfig;
12
13impl Default for RsaConfig {
14    fn default() -> Self {
15        Self {
16            radius: 0.05,
17            domain: [1.0, 1.0, 1.0],
18            max_attempts: 10_000,
19            min_gap: 0.0,
20        }
21    }
22}