mout
Version:
Modular Utilities
14 lines (13 loc) • 531 B
TypeScript
import ceil from './math/ceil';
import clamp from './math/clamp';
import countSteps from './math/countSteps';
import floor from './math/floor';
import inRange from './math/inRange';
import isNear from './math/isNear';
import lerp from './math/lerp';
import loop from './math/loop';
import map from './math/map';
import norm from './math/norm';
import overflow from './math/overflow';
import round from './math/round';
export { ceil, clamp, countSteps, floor, inRange, isNear, lerp, loop, map, norm, overflow, round };