Skip to content

Instantly share code, notes, and snippets.

@rutcreate
Created February 5, 2015 16:11
Show Gist options
  • Select an option

  • Save rutcreate/efc38a52ba98bec13e6b to your computer and use it in GitHub Desktop.

Select an option

Save rutcreate/efc38a52ba98bec13e6b to your computer and use it in GitHub Desktop.
Random point on Disk
function getPointOnDisk(radius) {
var a = Math.random(),
b = Math.random();
if (b < a) {
c = b;
b = a;
a = c;
}
return {
x: b * radius * Math.cos( 2 * Math.PI * a / b ),
y: b * radius * Math.sin( 2 * Math.PI * a / b )
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment