-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract cross product operation #133
Labels
Comments
here are the two implementations which could be put on |
I would like to work on this issue. |
@Jay9596 thanks for taking this on! you can go ahead and change the existing occurrences to use the new method |
bors bot
added a commit
that referenced
this issue
Mar 12, 2018
189: cross_prod method added to Point r=frewsxcv a=Jay9596 Solves #133 `Point` struct now implements a cross product fuction `cross_prod` that use previously used inline in 2 different parts of the codebase. - algorithm/extremes.rs - algorithm/convexhull.rs It uses the same implementation the other inline function were using.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The cross product of two points is implemented inline in several places. We should implement a cross product method directly on
Point
.See also: #132 (comment)
The text was updated successfully, but these errors were encountered: