Skip to content

Instantly share code, notes, and snippets.

View chiunhau's full-sized avatar
🐢
I may be slow to respond.

Chiun Hau You chiunhau

🐢
I may be slow to respond.
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>New p5 Project</title>
<style>
h1 {
color: red;
}
</style>
@chiunhau
chiunhau / bezierEllipse.js
Last active April 20, 2021 18:23
Draw ellipse with bezierVertex() in p5.js
/*
* @param {Number} x x-coordinate for the ellipse
* @param {Number} y y-coordinate for the ellipse
* @param {Number} r radius of the ellipse
* @param {Number} n segements of the ellipse, defaults to 4
*/
p5.prototype.bezierEllipse(x, y, r, n) {
// caulate length of each controls: r - (4/3)*tan(PI/(2n))
var ctrl = r * (4 / 3) * tan(PI / (2 * n));
@chiunhau
chiunhau / uri.js
Last active August 29, 2015 14:26 — forked from jlong/uri.js
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"