modeling/src/maths/vec3/fromValues.js

  1. const create = require('./create')
  2. /**
  3. * Creates a new vector initialized with the given values.
  4. *
  5. * @param {Number} x - X component
  6. * @param {Number} y - Y component
  7. * @param {Number} z - Z component
  8. * @returns {vec3} a new vector
  9. * @alias module:modeling/maths/vec3.fromValues
  10. */
  11. const fromValues = (x, y, z) => {
  12. const out = create()
  13. out[0] = x
  14. out[1] = y
  15. out[2] = z
  16. return out
  17. }
  18. module.exports = fromValues