UNPKG

@loaders.gl/math

Version:

Experimental math classes for loaders.gl

8 lines (7 loc) 124 B
/** * Handle UVs if they are out of range [0,1]. * @param n */ export function emod(n) { return ((n % 1) + 1) % 1; }