Skip to content

Instantly share code, notes, and snippets.

@montreal91
Created December 22, 2015 14:08
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 montreal91/d12c0487ca4d666c8579 to your computer and use it in GitHub Desktop.
Save montreal91/d12c0487ca4d666c8579 to your computer and use it in GitHub Desktop.
point
struct Point {
Point() {
x = 0;
y = 0;
}
Point(double new_x, double new_y) {
x = new_x;
y = new_y;
}
double x, y;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment