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