use crate::render::{Color, LineStyle};
use super::SurfaceSampling;
#[derive(Clone, Debug)]
pub struct Wireframe3DConfig {
pub color: Option<Color>,
pub line_width: f32,
pub line_style: LineStyle,
pub sampling: SurfaceSampling,
}
impl Default for Wireframe3DConfig {
fn default() -> Self {
Self {
color: None,
line_width: 1.0,
line_style: LineStyle::Solid,
sampling: SurfaceSampling::Auto,
}
}
}