diff --git a/src/components/interactives/ComputingPi.tsx b/src/components/interactives/ComputingPi.tsx index e1ea674..70a5d99 100644 --- a/src/components/interactives/ComputingPi.tsx +++ b/src/components/interactives/ComputingPi.tsx @@ -287,10 +287,18 @@ const RunTile: React.FC = ({ index, run, clickable, onClick }) => clickable ? 'cursor-pointer hover:border-primary' : 'cursor-default' }`} > - {/* H / T counters */} -
+ {/* H / T counters with a fraction indicator dot — position = H/N, + midpoint = H=T, so the dot crosses the middle exactly when the run stops. */} +
H:{run.heads} T:{run.tails} + {run.sequence.length > 0 && ( +
{/* Billboard + footer */}