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
11#[allow(unused_imports)]
12use super::functions::*;
13use super::types::RsaConfig;
14
15impl Default for RsaConfig {
16    fn default() -> Self {
17        Self {
18            radius: 0.05,
19            domain: [1.0, 1.0, 1.0],
20            max_attempts: 10_000,
21            min_gap: 0.0,
22        }
23    }
24}