DefinitelyTyped/types/gl-vec4/squaredDistance.d.ts
2019-03-01 15:57:24 +11:00

7 lines
174 B
TypeScript

/**
* Calculates the squared euclidian distance between two vec4's.
*/
declare function squaredDistance(a: number[], b: number[]): number;
export default squaredDistance;