Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Delete unnecessary comments
  • Loading branch information
Yanjun7J committed Feb 6, 2018
commit 527e39cab1ca6cbfc1254eba336adb32d815cdae
1 change: 0 additions & 1 deletion src/point_triangle_distance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ void point_triangle_distance(
Eigen::RowVector3d v3 = x0 - a;
double v11 = v1.dot(v1);
double v12 = v1.dot(v2);
//double v21 = v2.dot(v1);
double v22 = v2.dot(v2);
double v31 = v3.dot(v1);
double v32 = v3.dot(v2);
Expand Down