Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Refactor Ginger-Lib #144
Refactor Ginger-Lib #144
Changes from 3 commits
5924fde
623740d
d3225fa
17b2fad
2296540
7d0c102
1e93d2f
b911473
d56bd60
6e33192
f130a13
5a71322
adba37d
648eaa5
47a3d5a
3c522fe
e10c4a5
06e8778
252db67
ba66f12
d927216
a558c29
fbce641
61fea62
1bfed13
ca0bd35
d99c83a
12a32ab
0aa9131
8f1858c
773c114
7b99cbd
b7f4342
0f993e5
a842e30
bc7c216
d890be2
7ef8626
b04df86
1c2f932
18cf717
c65877f
298b225
430a771
4b571f5
be9e813
3a483a9
105c22c
f997390
ee41f74
2d9cff2
ee095a0
49c4a8d
73664a3
c46cc86
12e4767
dcbb863
5147c08
b9d4a5f
46b366c
9f1b0be
6e33335
d117c67
2394bc5
3ee86e2
7c4edf5
c4011d6
e2d3a3f
1129b55
98f78e1
df0d5e2
79491f7
f3b4c9d
b254ee9
d8f93c0
dc062b0
f2371b6
cad81d0
de59738
083f383
1185770
d654def
7c84be6
dcc62b6
3554b50
db24959
c283cf8
741a7b4
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo?
This trait t ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason for having a
Vec
instead of a slice, as inbatch_from_affine()
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Logically yes: you are consuming Self to obtain an Affine (all the usages were like this in the end, and I don't see any reason why Projective and Affine are allowed to co-exist in the same piece of code at a given moment)