🚀 draw world
This commit is contained in:
8
packages/compute/point.ts
Normal file
8
packages/compute/point.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
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 },
|
||||
];
|
||||
Reference in New Issue
Block a user