UNPKG

@thewtex/vtk.js-esm

Version:

Visualization Toolkit for the Web

9 lines (6 loc) 231 B
import { e as exponent } from './exponent.js'; function precisionRound(step, max) { step = Math.abs(step), max = Math.abs(max) - step; return Math.max(0, exponent(max) - exponent(step)) + 1; } export { precisionRound as p };