1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use crate::components::Dimension;
use piet::Color;
use specs::prelude::*;
use specs_derive::Component;

#[derive(Debug, Clone, Component)]
#[storage(DenseVecStorage)]
pub struct PointStyle {
    pub colour: Color,
    pub radius: Dimension,
}

impl Default for PointStyle {
    fn default() -> PointStyle {
        PointStyle {
            colour: Color::BLACK,
            radius: Dimension::default(),
        }
    }
}

#[derive(Debug, Clone, Component)]
#[storage(DenseVecStorage)]
pub struct LineStyle {
    pub stroke: Color,
    pub width: Dimension,
}

impl Default for LineStyle {
    fn default() -> LineStyle {
        LineStyle {
            stroke: Color::BLACK,
            width: Dimension::default(),
        }
    }
}

#[derive(Debug, Clone, Component)]
#[storage(HashMapStorage)]
pub struct WindowStyle {
    pub background_colour: Color,
}

impl Default for WindowStyle {
    fn default() -> WindowStyle {
        WindowStyle {
            background_colour: Color::WHITE,
        }
    }
}