- Sep 02, 2019
-
-
Joseph Mirabel 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
-
- 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
-