export const cossin = (theta: number, n = 1): [number, number] => [
    Math.cos(theta) * n,
    Math.sin(theta) * n,
];