Commit fd29bad
docs: restore the classification matrix and re-cut the graph for mobile (#862)
Three fixes to the README architecture graph.
**The classification matrix is back.** It was dropped when the graph was
sized down for the README column, on the grounds that its 10px axis
labels fall under the type floor. That was the wrong call — without it
the two conductors read as an arbitrary hand-off, and the matrix
registers as a *shape* (a scan sweep, one rust cell) long before anyone
reads the words. It now sits centred over the level-2 conductor: the
sweep lands on UNCERTAIN, the escalation fires, level 3 resolves it to
CRITICAL.
**The REJECTED label was orphaned.** It sat at x=392 while the rejection
loop runs between x=586 and x=958 — floating text with nothing attached
to it. Moved under the loop's low point, and the loop was raised
slightly to open the gap.
**The animation was slow on phones.** Not a rendering bug — an encoding
one. Animated WebP is CPU-decoded with no frame-dropping, so when a
phone falls behind it stretches the animation instead of skipping ahead.
The old encode made that worse two ways: it carried an alpha channel on
396 of 536 frames despite every source frame being opaque RGB, and wrote
a full keyframe every ~5 frames.
| | before | after |
|---|---|---|
| size (pair) | 6.6 MB | **1.3 MB** |
| decoded per loop | 252 MP | **76 MP** |
| alpha frames | 396 | **0** |
| fps | 25 | 15 |
Width stays 1856px, so the retina supply ratio for an ~890px column is
unchanged.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Eivind <eivindcovibes.ai@Eivinds-MacBook-Pro.local>
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>1 parent 4ea9039 commit fd29bad
3 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
Loading
Loading
0 commit comments