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
use types::FontSize;
use ImageSize;
#[derive(Clone)]
pub struct Character<T: ImageSize> {
pub offset: [f64; 2],
pub size: [f64; 2],
pub texture: T,
}
impl<T: ImageSize> Character<T> {
pub fn left(&self) -> f64 {
self.offset[0]
}
pub fn top(&self) -> f64 {
self.offset[1]
}
pub fn width(&self) -> f64 {
self.size[0]
}
pub fn height(&self) -> f64 {
self.size[1]
}
}
pub trait CharacterCache {
type Texture: ImageSize;
fn character(
&mut self,
font_size: FontSize,
ch: char
) -> &Character<<Self as CharacterCache>::Texture>;
fn width(&mut self, size: FontSize, text: &str) -> ::math::Scalar {
text.chars().fold(0.0, |a, ch| {
let character = self.character(size, ch);
a + character.width()
})
}
}