UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

10 lines (8 loc) 168 B
/** * * @param {number} ior index of refraction * @return {number} */ export function ior_to_reflectivity(ior) { return 2.5 * (ior - 1) / (ior + 1) }