Source: Utils/InterpolateVec2.js

  1. /*
  2. * File: InterpolateVec2.js
  3. * Encapsulates linear interpolation of vec2, calls gl-matrixjs::lerp
  4. */
  5. /*jslint node: true, vars: true */
  6. /*global gEngine: false, vec2: false, Interpolate: false */
  7. /* find out more about jslint: http://www.jslint.com/help.html */
  8. "use strict";
  9. /**
  10. * Default Constructor
  11. * vec2 interpolation support
  12. * @memberOf InterpolateVec2
  13. * @param {type} value target for interpolation
  14. * @param {Integer} cycle how many cycle it should take for a value to change to final
  15. * @param {Number} rate the rate at which the value should change at each cycle
  16. * @returns {InterpolateVec2} New Instance of InterpolateVec2
  17. */
  18. function InterpolateVec2(value, cycle, rate) {
  19. Interpolate.call(this, value, cycle, rate);
  20. }
  21. gEngine.Core.inheritPrototype(InterpolateVec2, Interpolate);
  22. /**
  23. * Interpolate values
  24. * @memberOf InterpolateVec2
  25. * @returns {void}
  26. */
  27. InterpolateVec2.prototype._interpolateValue = function () {
  28. vec2.lerp(this.mCurrentValue, this.mCurrentValue, this.mFinalValue, this.mRate);
  29. };