Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

move

By: a guest on Aug 17th, 2010  |  syntax: JavaScript  |  size: 0.45 KB  |  hits: 168  |  expires: Never
download  |  raw  |  embed  |  report abuse
This paste has a previous version, view the difference. Copied
  1. move : function () {
  2.         var center = this.shape.center.move(this.speed);
  3.         // если объект не влез по ширине - разворачиваем его по оси X
  4.         if (!center.x.between(0,this.full.width)) {
  5.                 (this.speed.x *= -1);
  6.         }
  7.         // если объект не влез по высоте - разворачиваем его по оси Y
  8.         if (!center.y.between(0,this.full.height)) {
  9.                 (this.speed.y *= -1);
  10.         }
  11.         return this;
  12. }