distance
distance calculates the distance between two n-dimensional points.
Import
import { distance } from '@popmotion/popcorn';Usage
1D points
Provide two numbers to measure the distance between them.
distance(-100, 100); // 2002D and 3D points
Provide two Point values, with x, y and optionally z numbers, to measure the distance between them.
distance(
{ x: 0, y: 0, z: 0 },
{ x: 0, y: 0, z: 10 }
); // 10Types
type Point = {
x: number;
y: number;
z?: number;
}
distance(a: number | Point, b: number | Point): number