Skip to content

Instantly share code, notes, and snippets.

@Ratstail91
Last active August 29, 2015 14:14
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 Ratstail91/10a4da6aad58e5b84021 to your computer and use it in GitHub Desktop.
Save Ratstail91/10a4da6aad58e5b84021 to your computer and use it in GitHub Desktop.
class Vector2 {
double x, y;
}
inline double cos(Vector2 v) {
//x over hypotenuse
return v.x / sqrt(v.x*v.x + v.y*v.y);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment