DefinitelyTyped/types/gl-vec3/equals.d.ts
2019-03-01 11:31:37 +11:00

7 lines
190 B
TypeScript

/**
* Returns whether or not the vectors have approximately the same elements in the same position..
*/
declare function equals(a: number[], b: number[]): boolean;
export default equals;