graphic-pixi/src/math/Constants.ts

27 lines
408 B
TypeScript
Raw Normal View History

/**
*
*/
export const epsilon = 0.00001;
/**
* 0
* @param v
* @returns
*/
export function isZero(v: number) {
if (Math.abs(v) < epsilon) {
return true;
}
return false;
}
/**
*
* @param f1
* @param f2
* @returns
*/
export function floatEquals(f1: number, f2: number): boolean {
return isZero(f1 - f2);
}