-
Notifications
You must be signed in to change notification settings - Fork 2
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
Reorganize files #2
Conversation
[&](auto z) { return E; })) | ||
S(1, pt[0] != z); | ||
S(2, ver(z, pt[0], pt[1]) != (P3){0, 0, 0}); | ||
S(3, (z - pt[0]).dot(ver(pt[0], pt[1], pt[2])) != 0); |
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.
Does this work for n=3?
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.
This might be a mis-add though.
It should be if (n <= 3) return {}; // handle edge case
or something.
Just want to double check that we don't need to return a Face when n=3. |
No description provided.