/** * Returns the second 2-vector minus the first. * @param p the first vector * @param q the second vector */ declare function fromTo(p: number[], q: number[]): number[]; export { fromTo };