oxiphysics_io/mesh_quality/qualitythresholds_traits.rs
1//! # QualityThresholds - Trait Implementations
2//!
3//! This module contains trait implementations for `QualityThresholds`.
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::QualityThresholds;
14
15impl Default for QualityThresholds {
16 fn default() -> Self {
17 Self {
18 max_aspect_ratio: 5.0,
19 max_skewness: 0.5,
20 min_angle: 15.0,
21 max_angle: 150.0,
22 min_area: 1e-10,
23 }
24 }
25}