/** * Linear distance model. * * @category Sound */ export const DISTANCE_LINEAR: "linear"; /** * Inverse distance model. * * @category Sound */ export const DISTANCE_INVERSE: "inverse"; /** * Exponential distance model. * * @category Sound */ export const DISTANCE_EXPONENTIAL: "exponential";