UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 231 B
/** * compute index of spherical harmonics coefficient * @param {number} m signed offset from zonal harmonic * @param {number} l band * @return {number} */ export function sh_index(m, l) { return l * (l + 1) + m; }