From 1727e84ced3361c5b6430bb68e24fa694e9f290d Mon Sep 17 00:00:00 2001 From: panjia1983 <panjia1983@gmail.com> Date: Wed, 25 Sep 2013 13:30:20 -0700 Subject: [PATCH] fix problem in readme --- README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/README.md b/README.md index ee6dade4..a7791bdd 100644 --- a/README.md +++ b/README.md @@ -123,20 +123,6 @@ ContinuousCollisionResult result; // perform continuous collision test continuousCollide(o1, tf_goal_o1, o2, tf_goal_o2, request, result); ``` -#For global penetration depth computation, we need a pre-computation step. Beside that, the online penetration depth function uses exactly the same pipeline as shown above: -#```cpp -#// Given two objects o1 and o2 -#CollisionObject* o1 = ... -#CollisionObject* o2 = ... -#// the precomputation step for global penetration computation (see test_fcl_xmldata.cpp for an example) -#... -#// set the penetration depth request structure, here we just use the default setting -#PenetrationDepthRequest request; -#// result will be returned via the penetration depth result structure -#PenetrationDepthResult result; -#// perform global penetration depth test -#penetrationDepth(o1, o2,request, result); -#``` FCL supports broadphase collision/distance between two groups of objects and can avoid the n square complexity. For collision, broadphase algorithm can return all the collision pairs. For distance, it can return the pair with the minimum distance. FCL uses a CollisionManager structure to manage all the objects involving the collision or distance operations. ```cpp -- GitLab