-
-
Notifications
You must be signed in to change notification settings - Fork 116
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
Scale and Lambda Medial Axis #1582
base: master
Are you sure you want to change the base?
Conversation
Few hints:
|
documentation : |
It looks like I cannot push to your branch anymore. Have you changed something? |
I just did a PR on your repo (not great). Could you please check the permissions? |
… Map (not working yet)
Eigen::Vector3f b; | ||
int b1, b2, b3; | ||
|
||
b1 = -(pow(B[0], 2) - pow(A[0], 2) + pow(B[1], 2) - pow(A[1], 2) + pow(B[2], 2) - pow(A[2], 2)); |
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.
casting to int may not be a great idea.
b3 = -(pow(D[0], 2) - pow(A[0], 2) + pow(D[1], 2) - pow(A[1], 2) + pow(D[2], 2) - pow(A[2], 2)); | ||
b << b1, b2, b3; | ||
|
||
M << 2*(A[0] - B[0]) , 2*(A[1] - B[1]) , 2*(A[2] - B[2]) , |
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.
should use arithmetic on PointVector
@@ -0,0 +1,98 @@ | |||
/** |
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.
test not included in the CMakeLists.txt
PR Description
your description here
Checklist
cmake
mode (otherwise, Travis C.I. will fail).