Spaces:
Sleeping
Sleeping
File size: 347 Bytes
7f7b2cc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
export type FacingDirection =
| "front"
| "back"
| "left"
| "right"
| "top"
| "bottom";
export const Rotations: Record<FacingDirection, [number, number, number]> = {
front: [0, 0, 0],
back: [0, Math.PI, 0],
left: [0, -Math.PI / 2, 0],
right: [0, Math.PI / 2, 0],
top: [-Math.PI / 2, 0, 0],
bottom: [Math.PI / 2, 0, 0],
};
|