hephaestus 0.1.0

Backend-agnostic 2D scene renderer for data visualization.
Documentation
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
//! Text rendering shared by every chrome slot.
//!
//! Axes, legends, strips and the plot-level title band all need the
//! same three things: turn a themed [`TextElement`] into a shaped
//! style, reserve a layout cell whose measure includes the element's
//! margin, and draw the run inside a rect honoring alignment,
//! rotation, wrapping and the optional outline pass.
//!
//! Both the plain and markdown paths live here, so a slot opts into
//! rich text by setting `markdown` on its element rather than by
//! calling a different function.
//!
//! [`TextElement`]: crate::plot::theme::TextElement

use crate::geometry::Rect;
use crate::layout::Cell;
use crate::scales::chrome::AxisSide;
use crate::scene::SceneBuilder;

/// Build a chrome text cell whose measure includes both the shaped
/// run **and** the element's margin. The slot the layout solver
/// reserves is therefore sized to text + margin; the draw helper
/// then insets back to position the text inside.
pub(crate) fn text_cell_for_element(
    s: &str,
    el: &crate::plot::theme::TextElement,
    parent_pt: f64,
    dpi: f64,
    theme: &crate::plot::theme::Theme,
) -> Cell {
    use crate::plot::theme::text_concrete_defaults;
    let style = text_style_from(el, parent_pt);
    let run = measure_for_element(s, el, &style, dpi, theme);
    let margin = el
        .margin
        .or(text_concrete_defaults().margin)
        .expect("text_concrete_defaults sets margin");
    let (mt, mr, mb, ml) = margin.resolve(parent_pt);
    let pt_to_px = dpi / 72.0;
    let margins_px = (mt * pt_to_px, mr * pt_to_px, mb * pt_to_px, ml * pt_to_px);
    if margins_px.0 == 0.0 && margins_px.1 == 0.0 && margins_px.2 == 0.0 && margins_px.3 == 0.0 {
        Cell::measured_boxed(run)
    } else {
        Cell::measured(crate::text::WithMargin::new(run, margins_px))
    }
}

/// Shape `s` the same way the draw pass will, so a slot measures at
/// the size it renders at. A markdown slot measures through
/// [`crate::text::rich::RichTextRun`]; anything else through
/// [`crate::text::TextRun`].
pub(crate) fn measure_for_element(
    s: &str,
    el: &crate::plot::theme::TextElement,
    style: &crate::text::TextStyle,
    dpi: f64,
    theme: &crate::plot::theme::Theme,
) -> Box<dyn crate::layout::Measure> {
    use crate::plot::theme::text_concrete_defaults;
    if matches!(el.markdown, Some(true)) {
        let color = el
            .color
            .clone()
            .or_else(|| text_concrete_defaults().color.clone())
            .expect("color default");
        return Box::new(crate::text::rich::RichTextRun::new(
            s,
            style,
            color.resolve(&theme.palette),
            &theme.rich_text,
            &theme.palette,
            dpi,
        ));
    }
    Box::new(crate::text::TextRun::new(s, style, dpi))
}

/// Convert a theme [`TextElement`](crate::plot::theme::TextElement)
/// into a shaper-facing [`crate::text::TextStyle`]. Resolves
/// `size_pt` against `parent_pt` (typically the root text size) and
/// translates every `FontSpec` axis into the matching `TextStyle`
/// field: family chain (named + generic fallbacks), weight, width,
/// style (italic / oblique angle), OpenType feature toggles, and
/// variable-font axis assignments. Empty / `None` `FontSpec` fields
/// leave the corresponding `TextStyle` field at its default.
pub(crate) fn text_style_from(
    el: &crate::plot::theme::TextElement,
    parent_pt: f64,
) -> crate::text::TextStyle {
    use crate::plot::theme::{text_concrete_defaults, FontFamily, FontStyle, FontWidth, Length};
    use crate::text::{
        FontFamilyEntry, FontFeatureSetting, FontStyleKind, FontVariationSetting,
        GenericFamilyKind, LineHeight,
    };
    let defaults = text_concrete_defaults();
    let size_len = el.size_pt.or(defaults.size_pt).expect("size_pt default");
    let size = size_len.resolve(parent_pt) as f32;
    let mut style = crate::text::TextStyle::new(size);
    // Line height: `Length::Rel(m)` → font-size multiplier; `Abs(pt)`
    // → absolute pt. Preserves the resolved-vs-relative semantics
    // across DPI changes.
    let lineheight = el
        .lineheight
        .or(defaults.lineheight)
        .expect("lineheight default");
    style = style.line_height(match lineheight {
        Length::Rel(mult) => LineHeight::Relative(mult as f32),
        Length::Abs(pt) => LineHeight::Absolute(pt as f32),
    });
    let letter_spacing = el
        .letter_spacing
        .or(defaults.letter_spacing)
        .expect("letter_spacing default");
    let letter_spacing_pt = match letter_spacing {
        Length::Abs(pt) => pt,
        Length::Rel(mult) => mult * size as f64,
    };
    style = style.letter_spacing_pt(letter_spacing_pt as f32);
    let underline = el
        .underline
        .or(defaults.underline)
        .expect("underline default");
    style = style.underline(underline);
    let strikethrough = el
        .strikethrough
        .or(defaults.strikethrough)
        .expect("strikethrough default");
    style = style.strikethrough(strikethrough);
    if let Some(weight) = el.font.weight {
        style = style.weight(weight.0);
    }
    if let Some(width) = el.font.width {
        style = style.width(match width {
            FontWidth::UltraCondensed => 0.5,
            FontWidth::ExtraCondensed => 0.625,
            FontWidth::Condensed => 0.75,
            FontWidth::SemiCondensed => 0.875,
            FontWidth::Normal => 1.0,
            FontWidth::SemiExpanded => 1.125,
            FontWidth::Expanded => 1.25,
            FontWidth::ExtraExpanded => 1.5,
            FontWidth::UltraExpanded => 2.0,
        });
    }
    style = style.style(match el.font.style {
        Some(FontStyle::Italic) => FontStyleKind::Italic,
        Some(FontStyle::Oblique(angle)) => FontStyleKind::Oblique(angle),
        Some(FontStyle::Normal) | None => FontStyleKind::Normal,
    });
    if let Some(family) = &el.font.family {
        let entries: Vec<FontFamilyEntry> = match family {
            FontFamily::Named(names) => names
                .iter()
                .map(|n| FontFamilyEntry::Named(n.clone()))
                .collect(),
            FontFamily::Serif => vec![FontFamilyEntry::Generic(GenericFamilyKind::Serif)],
            FontFamily::SansSerif => vec![FontFamilyEntry::Generic(GenericFamilyKind::SansSerif)],
            FontFamily::Mono => vec![FontFamilyEntry::Generic(GenericFamilyKind::Mono)],
            FontFamily::Cursive => vec![FontFamilyEntry::Generic(GenericFamilyKind::Cursive)],
            FontFamily::Fantasy => vec![FontFamilyEntry::Generic(GenericFamilyKind::Fantasy)],
            FontFamily::SystemUi => vec![FontFamilyEntry::Generic(GenericFamilyKind::SystemUi)],
        };
        style = style.families(entries);
    }
    if !el.font.features.is_empty() {
        let features: Vec<FontFeatureSetting> = el
            .font
            .features
            .iter()
            .map(|f| FontFeatureSetting {
                tag: f.tag,
                // Theme stores feature values as u32 to accommodate any
                // future encoding; parley uses u16, which covers every
                // OpenType feature value in practice.
                value: f.value.min(u16::MAX as u32) as u16,
            })
            .collect();
        style = style.features(features);
    }
    if !el.font.variations.is_empty() {
        let variations: Vec<FontVariationSetting> = el
            .font
            .variations
            .iter()
            .map(|v| FontVariationSetting {
                tag: v.tag,
                value: v.value,
            })
            .collect();
        style = style.variations(variations);
    }
    style
}

/// A resolved per-glyph outline for chrome text — palette and dpi
/// already applied, ready for [`crate::text::draw_text_outline`].
#[derive(Debug, Clone)]
pub(crate) struct TextOutline {
    /// Brush the outline pass paints with.
    pub brush: crate::brush::Brush,
    /// Glyph outline pen, width in device pixels.
    pub stroke: crate::stroke::Stroke,
}

/// Resolve a [`TextElement`](crate::plot::theme::TextElement)'s outline
/// fields into a concrete brush + pen. `None` when `text_stroke` names
/// no color or the width resolves to a non-positive pixel count — in
/// both cases the caller emits no outline pass.
///
/// `text_linewidth_pt` resolves against
/// [`DEFAULT_LINEWIDTH_PT`](crate::plot::theme::DEFAULT_LINEWIDTH_PT),
/// so no text-size parent needs threading here.
pub(crate) fn text_outline_from(
    el: &crate::plot::theme::TextElement,
    palette: &crate::plot::theme::Palette,
    dpi: f64,
) -> Option<TextOutline> {
    let color = el.text_stroke.as_ref()?.resolve(palette);
    let width_pt = el
        .text_linewidth_pt
        .or_else(|| crate::plot::theme::text_concrete_defaults().text_linewidth_pt)
        .expect("text_concrete_defaults sets text_linewidth_pt")
        .resolve(crate::plot::theme::DEFAULT_LINEWIDTH_PT);
    let width_px = width_pt * dpi / 72.0;
    if !width_px.is_finite() || width_px <= 0.0 {
        return None;
    }
    Some(TextOutline {
        brush: crate::brush::Brush::Solid(color),
        stroke: crate::stroke::Stroke::new(width_px),
    })
}

/// Emit the stroke-only glyph pass for `run` when `outline` is present.
///
/// Call immediately before the matching [`crate::text::draw_text`] with
/// identical `x`, `y` and `transform` so the outline registers behind
/// the fill. The fill pass owns picking, so this pass records
/// [`PickId::Skip`](crate::pick::PickId::Skip).
pub(crate) fn draw_text_outline_pass(
    scene: &mut dyn SceneBuilder,
    outline: Option<&TextOutline>,
    run: &crate::text::TextRun,
    x: f64,
    y: f64,
    transform: crate::geometry::Affine,
) {
    if let Some(o) = outline {
        crate::text::draw_text_outline(
            scene,
            run,
            x,
            y,
            &o.brush,
            &o.stroke,
            transform,
            crate::pick::PickId::Skip,
        );
    }
}

/// Resolve the effective [`TextElement`](crate::plot::theme::TextElement)
/// for an `Element<TextElement>` slot. `Blank` short-circuits to
/// `None`; otherwise the slot's sparse fields cascade onto `root`,
/// producing an owned `TextElement` whose `Some`-set fields reflect
/// the per-field merge of override → root.
///
/// Callers must still fall through to
/// [`text_concrete_defaults`](crate::plot::theme::text_concrete_defaults)
/// for any field left `None` (typically by passing the resolved
/// element to [`text_style_from`], which handles the fallback).
pub(crate) fn effective_text(
    slot: &crate::plot::theme::Element<crate::plot::theme::TextElement>,
    root: &crate::plot::theme::TextElement,
) -> Option<crate::plot::theme::TextElement> {
    match slot {
        crate::plot::theme::Element::Blank => None,
        crate::plot::theme::Element::Inherit => Some(root.clone()),
        crate::plot::theme::Element::Set(el) => Some(el.cascade(root)),
    }
}

/// Build the `Cell` for a cartesian axis title slot. Vertical sides
/// (Left/Right) wrap the shaped run in a [`RotatedAxisTitleMeasure`]
/// so the slot's column width reflects the rotated text's footprint
/// (one font line height) rather than the natural string width.
/// Horizontal sides reuse the unrotated `TextRun` measure directly.
pub(crate) fn axis_title_cell(
    title: &str,
    side: AxisSide,
    theme: &crate::plot::theme::Theme,
    dpi: f64,
) -> Cell {
    let (ch, side_idx) = crate::plot::chrome::axis::axis_side_to_channel_side(side);
    let resolved = theme.resolved_axis(ch, side_idx);
    let root_pt = crate::plot::chrome::root_text_pt(theme);
    let Some(el) = resolved.title else {
        return Cell::empty();
    };
    let style = text_style_from(&el, root_pt);
    let run = measure_for_element(title, &el, &style, dpi, theme);
    if side.is_vertical() {
        Cell::measured(RotatedAxisTitleMeasure {
            rotated_w: run.height_at(f64::INFINITY, dpi),
        })
    } else {
        Cell::measured_boxed(run)
    }
}

/// Measure for an axis title rotated 90° onto a vertical chrome
/// column. The slot's horizontal contribution is the font's line
/// height (post-rotation width); the vertical extent is panel-driven,
/// so the cell reports no row contribution.
struct RotatedAxisTitleMeasure {
    rotated_w: f64,
}

impl crate::layout::Measure for RotatedAxisTitleMeasure {
    fn width_hint(&self, _dpi: f64) -> crate::layout::WidthHint {
        crate::layout::WidthHint::Min(self.rotated_w)
    }

    fn height_at(&self, _width: f64, _dpi: f64) -> f64 {
        0.0
    }

    fn width_at(&self, _height: f64, _dpi: f64) -> f64 {
        self.rotated_w
    }
}

/// Wrap width for text rotated by `angle_rad` inside a `w` × `h`
/// rect: the rect's extent along the text's own advance direction.
/// Unrotated text wraps at `w` and quarter-turned text at `h`, so a
/// rotated block breaks against the edge it actually runs along
/// rather than the one that happens to be horizontal on screen.
pub(crate) fn rotated_wrap_width(w: f64, h: f64, angle_rad: f64) -> f64 {
    w * angle_rad.cos().abs() + h * angle_rad.sin().abs()
}

/// Render `text` styled by `el` inside `rect`, honoring every
/// layout-affecting field on the [`TextElement`]: `margin` insets the
/// rect before wrapping, `align` controls justification along the
/// text's advance direction, `valign` positions
/// the wrapped block across its stacked lines (Top / Middle / Bottom;
/// `Baseline` treated as Top), `angle` rotates the rendered block
/// around the inset's centre (only `Rotation::Degrees(_)` resolves
/// here — `Along` / `Across` need a baseline context and are deferred
/// to per-side helpers like [`draw_axis_title`]). `lineheight` flows
/// through the cached `TextRun` via [`text_style_from`].
///
/// Both alignments live in the **text's own frame**, so a rotated
/// block aligns against the rect's extents projected onto its advance
/// and stacking axes rather than against screen width and height: a
/// quarter-turned label centres along the edge it runs down, and its
/// `valign` moves it across that edge's thickness.
#[allow(clippy::too_many_arguments)]
pub(crate) fn draw_text_element_in_rect(
    scene: &mut dyn SceneBuilder,
    text: &str,
    el: &crate::plot::theme::TextElement,
    rect: Rect,
    palette: &crate::plot::theme::Palette,
    parent_pt: f64,
    dpi: f64,
    pick_id: crate::pick::PickId,
    // `Some` routes through [`crate::text::rich::draw_rich_text`]
    // when `el.markdown == Some(true)` — the sheet drives markdown
    // resolution, and the resolved `TextElement` feeds the base
    // style. `None` disables the rich path unconditionally (used at
    // callsites that don't want markdown, or feature gates that
    // prefer to opt out).
    sheet: Option<&std::sync::Arc<crate::text::rich::RichTextStyleSheet>>,
) {
    use crate::brush::Brush;
    use crate::geometry::{Affine, Vec2};
    use crate::plot::theme::{text_concrete_defaults, HAlign, Rotation, VAlign};
    use crate::text::rich::{draw_rich_text, HAnchor, RichAnchor, RichTextRun, VAnchor};
    use crate::text::{draw_text, TextRun};

    let defaults = text_concrete_defaults();
    // Inset by margin (pt → px).
    let margin = el.margin.or(defaults.margin).expect("margin default");
    let (mt, mr, mb, ml) = margin.resolve(parent_pt);
    let pt_to_px = dpi / 72.0;
    let inset = Rect::new(
        rect.x0 + ml * pt_to_px,
        rect.y0 + mt * pt_to_px,
        (rect.x1 - mr * pt_to_px).max(rect.x0 + ml * pt_to_px),
        (rect.y1 - mb * pt_to_px).max(rect.y0 + mt * pt_to_px),
    );
    let style = text_style_from(el, parent_pt);
    let color = el
        .color
        .clone()
        .or_else(|| defaults.color.clone())
        .expect("color default");
    let brush = Brush::Solid(color.resolve(palette));
    let outline = text_outline_from(el, palette, dpi);

    // ── Markdown branch. ──
    //
    // When the slot opts into markdown *and* a style sheet is
    // available, shape the rich pipeline instead of plain text. The
    // resolved `TextElement` feeds `RichTextRun`'s base style so
    // font / size / colour still cascade the same way. Alignment
    // (align / valign / angle) uses the same anchor arithmetic as
    // the plain path — anchor_x/anchor_y derived from HAlign/VAlign,
    // wrap via the same rotated-projection width.
    let use_markdown = matches!(el.markdown, Some(true)) && sheet.is_some();
    if use_markdown {
        let sheet = sheet.expect("sheet checked above");
        let align_h = el.align.or(defaults.align).expect("align default");
        let align_v = el.valign.or(defaults.valign).expect("valign default");
        let angle = el.angle.or(defaults.angle).expect("angle default");
        let angle_rad = match angle {
            Rotation::Degrees(d) => (d as f64).to_radians(),
            Rotation::Along | Rotation::Across => 0.0,
        };
        let inner_w = inset.x1 - inset.x0;
        let inner_h = inset.y1 - inset.y0;
        let along_px = rotated_wrap_width(inner_w, inner_h, angle_rad);
        let cross_px = rotated_wrap_width(inner_h, inner_w, angle_rad);
        let base_brush_col = color.resolve(palette);
        // Fold the element's outline onto the base style so a themed
        // halo survives the markdown path; per-span `text_stroke` in
        // the sheet still overrides it.
        let outlined_sheet: Option<std::sync::Arc<_>> = match (&el.text_stroke, outline.as_ref()) {
            (Some(stroke_color), Some(o)) => {
                let mut s = (**sheet).clone();
                let base = s.get("base").cloned().unwrap_or_default();
                s.set(
                    "base",
                    crate::text::rich::StyleDelta {
                        text_stroke: Some(stroke_color.clone()),
                        text_stroke_width: Some(crate::text::rich::pt(o.stroke.width * 72.0 / dpi)),
                        ..base
                    },
                );
                Some(std::sync::Arc::new(s))
            }
            _ => None,
        };
        let sheet = outlined_sheet.as_ref().unwrap_or(sheet);
        let rich = RichTextRun::new(text, &style, base_brush_col, sheet, palette, dpi);
        rich.set_max_width(along_px as f32, align_h);
        let block_w = rich.content_width();
        let block_h = rich.current_height();
        let hf = match align_h {
            HAlign::Start => 0.0,
            HAlign::Center | HAlign::Justify => 0.5,
            HAlign::End => 1.0,
        };
        let vf = match align_v {
            VAlign::Top | VAlign::Baseline => 0.0,
            VAlign::Middle => 0.5,
            VAlign::Bottom => 1.0,
        };
        if angle_rad.abs() < 1e-9 {
            let tx = inset.x0 + (along_px - block_w) * hf;
            let ty = inset.y0 + (cross_px - block_h) * vf;
            draw_rich_text(
                scene,
                &rich,
                tx,
                ty,
                RichAnchor {
                    h: HAnchor::Left,
                    v: VAnchor::Top,
                },
                Affine::IDENTITY,
                pick_id,
            );
        } else {
            let centre = Vec2::new((inset.x0 + inset.x1) * 0.5, (inset.y0 + inset.y1) * 0.5);
            let transform = Affine::translate(centre)
                * Affine::rotate(angle_rad)
                * Affine::translate(Vec2::new(
                    -along_px * 0.5 + (along_px - block_w) * hf,
                    -cross_px * 0.5 + (cross_px - block_h) * vf,
                ));
            draw_rich_text(
                scene,
                &rich,
                0.0,
                0.0,
                RichAnchor {
                    h: HAnchor::Left,
                    v: VAnchor::Top,
                },
                transform,
                pick_id,
            );
        }
        return;
    }

    let run = TextRun::new(text, &style, dpi);
    let alignment = el.align.or(defaults.align).expect("align default");
    let angle = el.angle.or(defaults.angle).expect("angle default");
    let angle_rad = match angle {
        Rotation::Degrees(d) => (d as f64).to_radians(),
        // Along / Across need a baseline orientation — chrome that
        // knows the baseline (axis titles, polar rails) handles those
        // variants in its own helper. Default to no rotation here.
        Rotation::Along | Rotation::Across => 0.0,
    };
    let inner_w = inset.x1 - inset.x0;
    let inner_h = inset.y1 - inset.y0;
    // Alignment travels with the text, not with the screen box:
    // `align` runs along the advance direction and `valign` across
    // the stacked lines, whatever the rotation. The slot the block
    // gets is therefore the inset projected onto those two rotated
    // axes — `along_px` is the extent the wrap breaks against,
    // `cross_px` its complement.
    let along_px = rotated_wrap_width(inner_w, inner_h, angle_rad);
    let cross_px = rotated_wrap_width(inner_h, inner_w, angle_rad);
    let _ = run.set_max_width(along_px as f32, alignment);
    // Inked height (first-line ascender top → last-line descender
    // bottom) drives layout. `ascender_offset` is the half-leading
    // the parley layout reserves above the first line; the draw
    // helper compensates by shifting the layout up by that much so
    // the visible glyphs land flush with the slot edge.
    let block_h = run.inked_height();
    let ascender_offset = run.first_line_ascender_offset();
    let valign = el.valign.or(defaults.valign).expect("valign default");
    let cross_offset = match valign {
        VAlign::Top | VAlign::Baseline => 0.0,
        VAlign::Middle => ((cross_px - block_h) * 0.5).max(0.0),
        VAlign::Bottom => (cross_px - block_h).max(0.0),
    };
    if angle_rad.abs() < 1e-9 {
        let (tx, ty) = (inset.x0, inset.y0 + cross_offset - ascender_offset);
        draw_text_outline_pass(scene, outline.as_ref(), &run, tx, ty, Affine::IDENTITY);
        draw_text(scene, &run, tx, ty, &brush, Affine::IDENTITY, pick_id);
    } else {
        // Rotate about the inset's centre and place the layout in the
        // text's own frame. parley has already offset each line inside
        // a box `along_px` wide, so `align` is baked into the glyph
        // positions and the layout origin sits half that box back from
        // the centre. Measuring from the content width instead would
        // apply the alignment a second time and slide the block to one
        // end of the box.
        let centre = Vec2::new((inset.x0 + inset.x1) * 0.5, (inset.y0 + inset.y1) * 0.5);
        let transform = Affine::translate(centre)
            * Affine::rotate(angle_rad)
            * Affine::translate(Vec2::new(
                -along_px * 0.5,
                cross_offset - cross_px * 0.5 - ascender_offset,
            ));
        // Both passes take the same transform and origin, so the
        // outline lands exactly under the rotated fill.
        draw_text_outline_pass(scene, outline.as_ref(), &run, 0.0, 0.0, transform);
        draw_text(scene, &run, 0.0, 0.0, &brush, transform, pick_id);
    }
}

/// Draw an axis title into `rect`, honoring `angle` from the theme.
/// `Along` and `Across` resolve against the per-side baseline
/// direction: Top / Bottom baselines run horizontally (0°), Left
/// rotates -90° (text reads bottom-to-top), Right rotates +90°. A
/// concrete `Rotation::Degrees(_)` bypasses that and uses the
/// absolute angle.
///
/// `outline`, when present, is emitted as a stroke-only pass behind
/// the fill.
#[allow(clippy::too_many_arguments)]
pub(crate) fn draw_axis_title(
    scene: &mut dyn SceneBuilder,
    run: &crate::text::TextRun,
    rect: Rect,
    side: AxisSide,
    brush: &crate::brush::Brush,
    outline: Option<&TextOutline>,
    angle: crate::plot::theme::Rotation,
) {
    use crate::geometry::{Affine, Vec2};
    use crate::plot::theme::HAlign;
    use crate::text::draw_text;
    let cx = (rect.x0 + rect.x1) * 0.5;
    let cy = (rect.y0 + rect.y1) * 0.5;
    let pid = crate::pick::PickId::Skip;
    let baseline_deg: f32 = match side {
        AxisSide::Top | AxisSide::Bottom => 0.0,
        AxisSide::Left => -90.0,
        AxisSide::Right => 90.0,
    };
    let resolved_deg = angle.resolve(baseline_deg);
    let theta = (resolved_deg as f64).to_radians();
    if theta.abs() < 1e-9 {
        let w = (rect.x1 - rect.x0) as f32;
        run.set_max_width(w, HAlign::Center);
        draw_text_outline_pass(scene, outline, run, rect.x0, rect.y0, Affine::IDENTITY);
        draw_text(scene, run, rect.x0, rect.y0, brush, Affine::IDENTITY, pid);
    } else {
        // Lay out unconstrained so the run stays single-line; the
        // surrounding slot drives how much the rotated text can grow.
        let h = run.set_max_width(f32::INFINITY, HAlign::Start) as f64;
        let w = run.content_width();
        let transform = Affine::translate(Vec2::new(cx, cy))
            * Affine::rotate(theta)
            * Affine::translate(Vec2::new(-w * 0.5, -h * 0.5));
        draw_text_outline_pass(scene, outline, run, 0.0, 0.0, transform);
        draw_text(scene, run, 0.0, 0.0, brush, transform, pid);
    }
}

/// Draw an axis title as marquee-flavoured markdown. Mirrors
/// [`draw_axis_title`] but shapes the string via [`RichTextRun`] and
/// draws with [`draw_rich_text`]. `text_stroke` on the axis title's
/// `TextElement` is not applied here — set `text_stroke` on the
/// sheet's `paragraph` class if a haloed markdown axis title is
/// needed.
#[allow(clippy::too_many_arguments)]
pub(crate) fn draw_axis_title_markdown(
    scene: &mut dyn SceneBuilder,
    text: &str,
    style: &crate::text::TextStyle,
    fill: crate::color::Color,
    palette: &crate::plot::theme::Palette,
    sheet: &std::sync::Arc<crate::text::rich::RichTextStyleSheet>,
    dpi: f64,
    rect: Rect,
    side: AxisSide,
    angle: crate::plot::theme::Rotation,
) {
    use crate::geometry::{Affine, Vec2};
    use crate::plot::theme::HAlign;
    use crate::text::rich::{draw_rich_text, HAnchor, RichAnchor, RichTextRun, VAnchor};
    let cx = (rect.x0 + rect.x1) * 0.5;
    let cy = (rect.y0 + rect.y1) * 0.5;
    let pid = crate::pick::PickId::Skip;
    let baseline_deg: f32 = match side {
        AxisSide::Top | AxisSide::Bottom => 0.0,
        AxisSide::Left => -90.0,
        AxisSide::Right => 90.0,
    };
    let resolved_deg = angle.resolve(baseline_deg);
    let theta = (resolved_deg as f64).to_radians();
    let run = RichTextRun::new(text, style, fill, sheet, palette, dpi);
    if theta.abs() < 1e-9 {
        let w = (rect.x1 - rect.x0) as f32;
        run.set_max_width(w, HAlign::Center);
        draw_rich_text(
            scene,
            &run,
            rect.x0,
            rect.y0,
            RichAnchor {
                h: HAnchor::Left,
                v: VAnchor::Top,
            },
            Affine::IDENTITY,
            pid,
        );
    } else {
        let w = run.natural_width();
        let h = run.natural_height();
        let transform = Affine::translate(Vec2::new(cx, cy))
            * Affine::rotate(theta)
            * Affine::translate(Vec2::new(-w * 0.5, -h * 0.5));
        draw_rich_text(
            scene,
            &run,
            0.0,
            0.0,
            RichAnchor {
                h: HAnchor::Left,
                v: VAnchor::Top,
            },
            transform,
            pid,
        );
    }
}

// ─── BoxMeasure shim ─────────────────────────────────────────────────────────
//
// `Cell::measured` takes `impl Measure + 'static`. The Scale axis path
// returns `Box<dyn Measure>`. Bridge it through a thin wrapper.

pub(crate) struct BoxMeasure(Box<dyn crate::layout::Measure>);

impl BoxMeasure {
    pub(crate) fn new(inner: Box<dyn crate::layout::Measure>) -> Self {
        Self(inner)
    }
}

impl crate::layout::Measure for BoxMeasure {
    fn width_hint(&self, dpi: f64) -> crate::layout::WidthHint {
        self.0.width_hint(dpi)
    }

    fn height_at(&self, width: f64, dpi: f64) -> f64 {
        self.0.height_at(width, dpi)
    }

    fn width_at(&self, height: f64, dpi: f64) -> f64 {
        self.0.width_at(height, dpi)
    }
}

/// Axis-aligned bbox of a single-line run rotated by `angle_deg`.
/// `text_w` / `text_h` are the run's natural (unrotated) pixel size.
pub(crate) fn rotated_bbox(text_w: f64, text_h: f64, angle_deg: f32) -> (f64, f64) {
    let theta = (angle_deg as f64).to_radians();
    let (cos_t, sin_t) = (theta.cos().abs(), theta.sin().abs());
    (
        text_w * cos_t + text_h * sin_t,
        text_w * sin_t + text_h * cos_t,
    )
}