| 63 | // --- Width scales with zoom (above the floor) -------------------------------- |
| 64 | |
| 65 | TEST(OverlayGeometryStroke, WidthEqualsThicknessAtUnityScale) { |
| 66 | EXPECT_NEAR(strokeOnScreenWidth(3.0, 1.0), 3.0, 1e-4); |
| 67 | } |
| 68 | |
| 69 | TEST(OverlayGeometryStroke, WidthGrowsWhenZoomedIn) { |
| 70 | // A 3px stroke at 2× is 6px on screen; at 4× it is 12px — it scales with zoom. |
nothing calls this directly
no test coverage detected