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
use super::variations::{self, DeltaSetIndexMap, ItemVariationStore};
include!("../../generated/generated_vvar.rs");
impl<'a> Vvar<'a> {
pub fn advance_height_delta(
&self,
glyph_id: GlyphId,
coords: &[F2Dot14],
) -> Result<Fixed, ReadError> {
variations::advance_delta(
self.advance_height_mapping(),
self.item_variation_store(),
glyph_id,
coords,
)
}
pub fn tsb_delta(&self, glyph_id: GlyphId, coords: &[F2Dot14]) -> Result<Fixed, ReadError> {
variations::item_delta(
self.tsb_mapping(),
self.item_variation_store(),
glyph_id,
coords,
)
}
pub fn bsb_delta(&self, glyph_id: GlyphId, coords: &[F2Dot14]) -> Result<Fixed, ReadError> {
variations::item_delta(
self.bsb_mapping(),
self.item_variation_store(),
glyph_id,
coords,
)
}
pub fn v_org_delta(&self, glyph_id: GlyphId, coords: &[F2Dot14]) -> Result<Fixed, ReadError> {
variations::item_delta(
self.v_org_mapping(),
self.item_variation_store(),
glyph_id,
coords,
)
}
}