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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
//! egui primitive backend. Milestone 10; optional feature `egui`.
//!
//! Without the feature every entry point is [`Error::Unsupported`].
//! With `features = ["egui"]` a [`MathBox`] becomes `egui::Shape`
//! meshes and rects — no SVG intermediate.
use crateColor;
use crateDim;
use crateError;
use crateMathFont;
use crateMathBox;
/// Options for [`shapes`] / [`paint_egui`].
///
/// Default: 14 pt, black fill, text style.
///
/// # Examples
///
/// ```
/// use latex_rust::{Color, Dim, EguiOptions};
///
/// let mut opt = EguiOptions::new();
/// opt.font_size_pt = Dim::from_i64(14);
/// opt.color = Color::rgb(0, 0, 0);
/// opt.display = false;
/// ```
/// Probe the egui backend: tessellate `tree` or return [`Error::Unsupported`].
///
/// Without `features = ["egui"]` this is [`Error::Unsupported`]. With the
/// feature, use [`shapes`] to keep the emitted primitives.
///
/// # Arguments
///
/// * `tree` — box model from [`crate::layout()`].
/// * `font` — face that supplied the glyph ids on `tree`.
///
/// # Returns
///
/// `Ok(())` when the feature is on and tessellation succeeds.
///
/// # Errors
///
/// * [`Error::Unsupported`] — `egui` feature off, or a box that cannot tessellate.
/// * [`Error::Font`] — missing glyph outline.
/// * [`Error::InvalidOption`] — non-positive font size (feature on).
///
/// # Examples
///
/// ```
/// use latex_rust::{render_egui, MathBox, MathFont};
///
/// let font = MathFont::stix_two_math().unwrap();
/// let r = render_egui(&MathBox::empty(), &font);
/// #[cfg(not(feature = "egui"))]
/// assert!(r.is_err());
/// #[cfg(feature = "egui")]
/// assert!(r.is_ok());
/// ```
/// `MathBox` → egui shapes and the layout bounding rect.
///
/// `pixels_per_point` is egui's device pixel ratio. Zero or negative is
/// [`Error::InvalidOption`]. Glyph tessellation is cached process-wide so a
/// later render of the same glyphs is a cache hit.
///
/// # Arguments
///
/// * `tree` — box model from [`crate::layout()`].
/// * `font` — face that supplied the glyph ids on `tree`.
/// * `options` — em size and default fill.
/// * `origin` — top-left of the layout rect, in egui points.
/// * `pixels_per_point` — device pixel ratio (must be positive).
///
/// # Returns
///
/// Shape list and the bounding `Rect` of the expression.
///
/// # Errors
///
/// * [`Error::InvalidOption`] — non-positive `pixels_per_point` or font size.
/// * [`Error::Font`] — missing glyph outline.
/// * [`Error::Unsupported`] — tessellation produced no triangles.
///
/// # Examples
///
/// ```
/// # #[cfg(feature = "egui")]
/// # {
/// use latex_rust::{layout, parse, shapes, EguiOptions, MathFont, MathStyle};
///
/// let ast = parse(r"x").unwrap();
/// let font = MathFont::stix_two_math().unwrap();
/// let tree = layout(&ast, &font, MathStyle::Text).unwrap();
/// let (shapes, rect) = shapes(&tree, &font, &EguiOptions::new(), egui::Pos2::ZERO, 1.0).unwrap();
/// assert!(!shapes.is_empty());
/// assert!(rect.width() > 0.0);
/// # }
/// ```
/// Parse, lay out, and emit egui shapes.
///
/// # Arguments
///
/// * `latex` — math source (see [`crate::parse()`]).
/// * `font` — face used for layout and outlines.
/// * `options` — em size, fill, and display vs text style.
/// * `origin` — top-left of the layout rect, in egui points.
/// * `pixels_per_point` — device pixel ratio (must be positive).
///
/// # Returns
///
/// Shape list and the bounding `Rect` of the expression.
///
/// # Errors
///
/// Same as [`crate::parse()`] plus [`shapes`].
///
/// # Examples
///
/// ```
/// # #[cfg(feature = "egui")]
/// # {
/// use latex_rust::{latex_to_shapes, EguiOptions, MathFont};
///
/// let font = MathFont::stix_two_math().unwrap();
/// let (shapes, _) = latex_to_shapes(r"x", &font, &EguiOptions::new(), egui::Pos2::ZERO, 1.0).unwrap();
/// assert!(!shapes.is_empty());
/// # }
/// ```
/// Paint shapes through an egui [`egui::Painter`].
///
/// Uses `painter.ctx().pixels_per_point()` as the device pixel ratio.
///
/// # Arguments
///
/// * `tree` — box model from [`crate::layout()`].
/// * `font` — face that supplied the glyph ids on `tree`.
/// * `options` — em size and default fill.
/// * `painter` — destination painter.
/// * `origin` — top-left of the layout rect, in egui points.
///
/// # Returns
///
/// The bounding `Rect` of the painted expression.
///
/// # Errors
///
/// Same as [`shapes`].
///
/// # Examples
///
/// This entry point needs a live `egui::Painter` from an egui app. See [`shapes`]
/// for a harness-free equivalent.