Files
snk/packages/compute/point.ts
platane a149bab26a 🚀 draw world
2020-07-18 17:46:41 +02:00

9 lines
149 B
TypeScript

export type Point = { x: number; y: number };
export const around4 = [
{ x: 1, y: 0 },
{ x: 0, y: -1 },
{ x: -1, y: 0 },
{ x: 0, y: 1 },
];