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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
use crate::pixelcolor::PixelColor;
#[derive(Debug, Copy, Clone)]
pub struct Style<P: PixelColor> {
pub fill_color: Option<P>,
pub stroke_color: Option<P>,
pub stroke_width: u8,
}
impl<P> Style<P>
where
P: PixelColor,
{
pub fn stroke(stroke_color: P) -> Self {
Self {
stroke_color: Some(stroke_color),
..Style::default()
}
}
}
impl<P> Default for Style<P>
where
P: PixelColor,
{
fn default() -> Self {
Self {
fill_color: None,
stroke_color: None,
stroke_width: 1,
}
}
}
pub trait WithStyle<C>
where
C: PixelColor,
{
fn style(self, style: Style<C>) -> Self;
fn stroke(self, stroke: Option<C>) -> Self;
fn stroke_width(self, width: u8) -> Self;
fn fill(self, stroke: Option<C>) -> Self;
}