summaryrefslogtreecommitdiff
path: root/web/src/components/grid/excursion.ts
blob: 7752df1d3f2d321f86adb9b40a1ca734319cf90c (plain)
1
2
3
4
5
6
7
8
export default function excursion(
  ctx: CanvasRenderingContext2D,
  f: () => void,
) {
  ctx.save();
  f();
  ctx.restore();
}