modeling/src/maths/vec3/distance.js

  1. /**
  2. * Calculates the Euclidian distance between the given vectors.
  3. *
  4. * @param {vec3} a - first operand
  5. * @param {vec3} b - second operand
  6. * @returns {Number} distance
  7. * @alias module:modeling/maths/vec3.distance
  8. */
  9. const distance = (a, b) => {
  10. const x = b[0] - a[0]
  11. const y = b[1] - a[1]
  12. const z = b[2] - a[2]
  13. return Math.sqrt(x * x + y * y + z * z)
  14. }
  15. module.exports = distance