Created
May 16, 2019 12:38
-
-
Save anuraghazra/c28025638fe302785b5f94be57743e78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
constrain() { | |
if (this.pos.x > CANVAS_WIDTH - this.radius) { | |
this.pos.x = CANVAS_WIDTH - this.radius; | |
} | |
if (this.pos.x < this.radius) { | |
this.pos.x = this.radius; | |
} | |
if (this.pos.y > CANVAS_HEIGHT - this.radius) { | |
this.pos.y = CANVAS_HEIGHT - this.radius; | |
} | |
if (this.pos.y < this.radius) { | |
this.pos.y = this.radius; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment