- Feb 07, 2019
-
-
Joseph Mirabel authored
-
-
-
-
-
* Commands executed: * find include src test -iname "*.h" -type f -exec sed -i "s/^namespace fcl/namespace hpp\n{\nnamespace fcl/; \$i} // namespace hpp\n" {} \; * find src -iname "*.cpp" -type f -exec sed -i "s/^namespace fcl/namespace hpp\n{\nnamespace fcl/; \$a\\\n} // namespace hpp" {} \; * find test/ -iname "*.cpp" -type f -exec sed -i "s/using namespace fcl/using namespace hpp::fcl/; s/fcl::/hpp::fcl::/g" {} \;
-
-
-
- Feb 06, 2019
-
-
Joseph Mirabel authored
using flag structure for argurments to collision requests
-
stevet authored
-
stonneau authored
Fix GJK between triangles that are very close
-
- Feb 05, 2019
-
-
Florent Lamiraux authored
in GJKSolver_indep::shapeDistance<TriangleP, TriangleP>.
-
Florent Lamiraux authored
triangles are in collision but distance between them is slightly positive.
-
- Jan 21, 2019
-
-
- Jan 20, 2019
-
-
Florent Lamiraux authored
Position of octree is defined by resolution only. cell center coordinates are of the form: ((kx+.5)*resolution, (ky+.5)*resolution, (kz+.5)*resolution), where kx, ky, kz are integers. This commit fixes the construction of the environment octree in order to respect this constraint. In test_fcl_octree, envOctree contains envMesh.
-
- Jan 18, 2019
-
-
Florent Lamiraux authored
-
- Jan 13, 2019
-
-
Florent Lamiraux authored
If GJK returns fail, assume no collision. Fix computation of closest points.
-
Florent Lamiraux authored
to check that if no collision lowed bound of distance is positive.
-
Florent Lamiraux authored
sqrDistLowerBound output parameter was not computed.
-
Florent Lamiraux authored
- if collision is very small epa algorithm may return slightly negative penetration.
-
- Jan 12, 2019
-
-
Florent Lamiraux authored
It seems that GJK fails when the triangles are close to each other but not colliding, Add a test in test_fcl_gjk with specific triangles and transforms that make GJK fail.
-
- Jan 10, 2019
-
-
Guilhem Saurel authored
Revert "[OBB] Simplify expression in obbDisjointAndLowerBoundDistance", fix #46
-
Guilhem Saurel authored
-
Guilhem Saurel authored
This reverts commit 31e52cc9.
-
Guilhem Saurel authored
[CI] use generated configuration directly
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
Guilhem Saurel authored
-
- Jan 09, 2019
-
-
Guilhem Saurel authored
-
- Jan 08, 2019
-
-
Joseph Mirabel authored
replaced ? by if in sphere_sphere distance for compilation purposes
-
stevet authored
-
- Jan 07, 2019
-
-
Florent Lamiraux authored
-
- Jan 02, 2019
-
-
Joseph Mirabel authored
-
- Dec 26, 2018
-
-
Florent Lamiraux authored
-
Florent Lamiraux authored
If GJK::evaluate fails to converge but that the distance of the origin to the simplex converges to 0, set distance and return fail. In shapeDistance, return collision if GJK::evaluate failed.
-
Florent Lamiraux authored
This test makes GJK fail, reaching the maximal number of iterations.
-
- Dec 25, 2018
-
-
Florent Lamiraux authored
- if dir [2] == 0, return a point with z coordinate equal to 0, - add a test between box and cylinder that did make GJK algorithm fail.
-
- Dec 24, 2018
-
-
Florent Lamiraux authored
-
Florent Lamiraux authored
-
Florent Lamiraux authored
-