/** * Returns the given 2-vector scaled to a length of one. * @param p a vector */ declare function toUnitVector(p: number[]): number[]; export { toUnitVector };