diff --git a/header-comment.txt b/header-comment.txt deleted file mode 100644 index 2d7370b..0000000 --- a/header-comment.txt +++ /dev/null @@ -1,7 +0,0 @@ -/* -Repo: https://github.com/bmoren/p5.collide2D/ -Created by http://benmoren.com -Some functions and code modified version from http://www.jeffreythompson.org/collision-detection -Version 0.7 | Nov 28th, 2018 -CC BY-NC-SA 4.0 -*/ \ No newline at end of file diff --git a/p5.collide2d.js b/p5.collide2d.js index b5afe75..721cd51 100644 --- a/p5.collide2d.js +++ b/p5.collide2d.js @@ -2,12 +2,12 @@ Repo: https://github.com/bmoren/p5.collide2D/ Created by http://benmoren.com Some functions and code modified version from http://www.jeffreythompson.org/collision-detection -Version 0.6 | Nov 28th, 2018 +Version 0.7 | June 22, 2020 CC BY-NC-SA 4.0 */ -console.log("### p5.collide ###") +console.log("### p5.collide v0.7 ###") p5.prototype._collideDebug = false; @@ -516,4 +516,4 @@ p5.prototype.collidePointArc = function(px, py, ax, ay, arcRadius, arcHeading, a // p5.vector version of collidePointArc p5.prototype.collidePointArcVector = function(p1, a, arcRadius, arcHeading, arcAngle, buffer){ return p5.prototype.collidePointArc(p1.x, p1.y, a.x, a.y, arcRadius, arcHeading, arcAngle, buffer); -} \ No newline at end of file +}