Skip to content

Instantly share code, notes, and snippets.

@W-Net-AI
Created August 21, 2014 05:04
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 W-Net-AI/d09d1007ae5898b8ad40 to your computer and use it in GitHub Desktop.
Save W-Net-AI/d09d1007ae5898b8ad40 to your computer and use it in GitHub Desktop.
Point2f* Point2f_mul_Assign(Point2f* self, Point2f* other) {
*self *= *other;
return self;
}
Point2f* Point2f_mul_Assign(Point2f* self, Point2f* other) {
return &(*self *= *other);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment