graphic-pixi/lib/math/Constants.d.ts

18 lines
339 B
TypeScript
Raw Normal View History

2023-12-12 17:31:07 +08:00
/**
*
*/
export declare const epsilon = 0.00001;
/**
* 0
* @param v
* @returns
*/
export declare function isZero(v: number): boolean;
/**
*
* @param f1
* @param f2
* @returns
*/
export declare function floatEquals(f1: number, f2: number): boolean;