funcs.js 920 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // Yeah, no way we're writing this every time we're inheriting. -az
  2. var inherit = function (child, parent) {
  3. child.prototype = Object.create(parent.prototype);
  4. child.prototype.constructor = child;
  5. }
  6. function requestGET(url, callback, async) {
  7. var req = new XMLHttpRequest();
  8. req.open("GET", url, async ? async : false);
  9. req.onreadystatechange = function() {
  10. if (this.readyState == this.DONE && this.status == 200)
  11. callback(this.responseText);
  12. else if (this.readyState == this.DONE && this.status == 404)
  13. callback(null);
  14. }
  15. req.send();
  16. }
  17. var smoothStep = function(l) {
  18. return Math.pow(l, 2) * (3 - 2 * l);
  19. }
  20. var easeIn = function(l, o) {
  21. o = o || 2;
  22. return Math.pow(l, o);
  23. }
  24. var easeOut = function(l, o) {
  25. o = o || 2;
  26. return 1 - Math.pow(1 - l, o);
  27. }
  28. var lerp = function (s, e, l) {
  29. return (e - s) * l + s;
  30. }
  31. var clamp = function(val, min, max) {
  32. return Math.min(max, Math.max(val, min));
  33. }