- Sep 02, 2019
-
-
Joseph Mirabel authored
-
Joseph Mirabel authored
-
Joseph Mirabel authored
-
- Aug 05, 2019
-
-
Justin Carpentier authored
-
- Jun 13, 2019
-
-
Joseph Mirabel authored
-
Joseph Mirabel authored
-
Joseph Mirabel authored
-
Florent Lamiraux authored
- with a cylinder.
-
- May 15, 2019
-
-
Florent Lamiraux authored
- in DistanceResult constructor, initialize nearestpoints and normal with NaN vectors, - in test_fcl_geometric_shapes.cpp, initialize plane with zero vectors.
-
Joseph Mirabel authored
-
- Apr 17, 2019
-
-
Joseph Mirabel authored
-
- Apr 13, 2019
-
-
Joseph Mirabel authored
-
- Mar 28, 2019
-
-
Joseph Mirabel authored
-
- Mar 04, 2019
-
-
Justin Carpentier authored
-
- Feb 07, 2019
-
-
-
-
* 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
-
-
stevet authored
-
- 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 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 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
-
- Dec 26, 2018
-
-
Florent Lamiraux authored
-
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
This test was malformed. It tested collision for tangent shapes and checked that A against B and B against A were collision free.
-
Florent Lamiraux authored
- many tests put shapes in singular configuration so that normal and depth are ill-defined. This modifications removes tests that are not relevant.
-
- Dec 14, 2018
-
-
Florent Lamiraux authored
-
Florent Lamiraux authored
-
Florent Lamiraux authored
- Collision detection calls distance computation and returns collision if the distance between objects is below the security margin. - This modification requires a modification in the structure of the software to make collision detection and distance computation closer. - GJKSolver_indep::shapeTriangleDistance and GJKSolver_indep::shapeTriangleIntersect have been replaced by GJKSolver_indep::shapeTriangleInteraction.
-
- Dec 10, 2018
-
-
Florent Lamiraux authored
-
Florent Lamiraux authored
instead of -1.
-
- Dec 07, 2018
-
-
Florent Lamiraux authored
-
- Dec 06, 2018
-
-
Florent Lamiraux authored
when checking sizes of vectors.
-
Florent Lamiraux authored
-
Florent Lamiraux authored
- old constructor is deprecated.
-
Florent Lamiraux authored
- store const CollisionRequest& as a member instead of CollisionRequest, - remove member CollisionRequest::enable_distance_lower_bound, - modify constructors of all derived classes.
-
Florent Lamiraux authored
-