Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,16 @@
"contributions": []
},
{
"login": "joecridge",
"name": "Joe Cridge",
"login": "ecridge",
"name": "Eden Cridge",
"avatar_url": "https://avatars2.githubusercontent.com/u/11491479?v=4",
"profile": "https://www.joecridge.me/",
"contributions": []
"profile": "https://ecridge.com/",
"contributions": [
"code",
"bug",
"review",
"test"
]
},
{
"login": "mikewesthad",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ We recognize all types of contributions. This project follows the [all-contribut
<td align="center"><a href="http://fromjia.com/"><img src="https://avatars1.githubusercontent.com/u/6025418?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jiashan Wu</b></sub></a><br /></td>
<td align="center"><a href="https://github.com/futuremarc"><img src="https://avatars3.githubusercontent.com/u/8646752?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marc Abbey</b></sub></a><br /></td>
<td align="center"><a href="http://www.kadamwhite.com"><img src="https://avatars1.githubusercontent.com/u/442115?v=4?s=100" width="100px;" alt=""/><br /><sub><b>K.Adam White</b></sub></a><br /></td>
<td align="center"><a href="https://www.joecridge.me/"><img src="https://avatars2.githubusercontent.com/u/11491479?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joe Cridge</b></sub></a><br /></td>
<td align="center"><a href="https://ecridge.com/"><img src="https://avatars2.githubusercontent.com/u/11491479?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Eden Cridge</b></sub></a><br /><a href="https://github.com/processing/p5.js/commits?author=ecridge" title="Code">πŸ’»</a> <a href="https://github.com/processing/p5.js/issues?q=author%3Aecridge" title="Bug reports">πŸ›</a> <a href="https://github.com/processing/p5.js/pulls?q=is%3Apr+reviewed-by%3Aecridge" title="Reviewed Pull Requests">πŸ‘€</a> <a href="https://github.com/processing/p5.js/commits?author=ecridge" title="Tests">⚠️</a></td>
<td align="center"><a href="http://mikewesthad.com"><img src="https://avatars1.githubusercontent.com/u/1131802?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Hadley</b></sub></a><br /></td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion src/core/p5.Renderer2D.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ p5.Renderer2D.prototype.updatePixels = function(x, y, w, h) {
* angle `size` radians, beginning `start` radians above the x-axis. Up to
* four of these curves are combined to make a full arc.
*
* See www.joecridge.me/bezier.pdf for an explanation of the method.
* See ecridge.com/bezier.pdf for an explanation of the method.
*/
p5.Renderer2D.prototype._acuteArcToBezier = function _acuteArcToBezier(
start,
Expand Down