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