Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@alanedwardes
Created December 24, 2011 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanedwardes/1518418 to your computer and use it in GitHub Desktop.
Save alanedwardes/1518418 to your computer and use it in GitHub Desktop.
function getXY(x, y, d, a){
return {
x: x + d * Math.cos(a),
y: y + d * Math.sin(a)
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment