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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
use super::*;
/// A length that is relative to the font size.
///
/// `1em` is the same as the font size.
#[derive(Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct Em(Scalar);
impl Em {
/// The zero length.
pub const fn zero() -> Self {
Self(Scalar(0.0))
}
/// The font size.
pub const fn one() -> Self {
Self(Scalar(1.0))
}
/// Create a font-relative length.
pub const fn new(em: f64) -> Self {
Self(Scalar(em))
}
/// Create font units at the given units per em.
pub fn from_units(units: impl Into<f64>, units_per_em: f64) -> Self {
Self(Scalar(units.into() / units_per_em))
}
/// Create an em length from a length at the given font size.
pub fn from_length(length: Length, font_size: Length) -> Self {
let result = length / font_size;
if result.is_finite() {
Self(Scalar(result))
} else {
Self::zero()
}
}
/// The number of em units.
pub const fn get(self) -> f64 {
(self.0).0
}
/// Convert to a length at the given font size.
pub fn at(self, font_size: Length) -> Length {
let resolved = font_size * self.get();
if resolved.is_finite() { resolved } else { Length::zero() }
}
}
impl Numeric for Em {
fn zero() -> Self {
Self::zero()
}
fn is_finite(self) -> bool {
self.0.is_finite()
}
}
impl Debug for Em {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(f, "{}em", self.get())
}
}
impl Neg for Em {
type Output = Self;
fn neg(self) -> Self {
Self(-self.0)
}
}
impl Add for Em {
type Output = Self;
fn add(self, other: Self) -> Self {
Self(self.0 + other.0)
}
}
sub_impl!(Em - Em -> Em);
impl Mul<f64> for Em {
type Output = Self;
fn mul(self, other: f64) -> Self {
Self(self.0 * other)
}
}
impl Mul<Em> for f64 {
type Output = Em;
fn mul(self, other: Em) -> Em {
other * self
}
}
impl Div<f64> for Em {
type Output = Self;
fn div(self, other: f64) -> Self {
Self(self.0 / other)
}
}
impl Div for Em {
type Output = f64;
fn div(self, other: Self) -> f64 {
self.get() / other.get()
}
}
assign_impl!(Em += Em);
assign_impl!(Em -= Em);
assign_impl!(Em *= f64);
assign_impl!(Em /= f64);
impl Sum for Em {
fn sum<I: Iterator<Item = Self>>(iter: I) -> Self {
Self(iter.map(|s| s.0).sum())
}
}
|