Convert Figma logo to code with AI

flexible-collision-library logofcl

Flexible Collision Library

1,380
417
1,380
226

Quick Overview

The Flexible Collision Library (FCL) is an open-source C++ library that provides efficient collision detection and proximity queries between a variety of geometric shapes, including spheres, boxes, capsules, and more. It is designed to be used in robotics, computer animation, and other applications that require fast and accurate collision detection.

Pros

  • Efficient Collision Detection: FCL uses advanced algorithms and data structures to perform collision detection and proximity queries quickly, making it suitable for real-time applications.
  • Supports a Variety of Geometric Shapes: FCL can handle a wide range of geometric shapes, including spheres, boxes, capsules, and more, allowing it to be used in a variety of applications.
  • Actively Maintained: The FCL project is actively maintained, with regular updates and bug fixes, ensuring its continued reliability and functionality.
  • Flexible and Customizable: FCL is designed to be flexible and customizable, allowing users to extend its functionality or integrate it into their own projects.

Cons

  • Steep Learning Curve: The FCL library can have a steep learning curve, especially for users who are new to collision detection and proximity queries.
  • Limited Documentation: The documentation for FCL can be sparse in some areas, which may make it difficult for new users to get started.
  • Dependency on Other Libraries: FCL depends on several other libraries, such as Eigen and Boost, which may add complexity to the installation and setup process.
  • Performance Limitations: While FCL is generally efficient, its performance may be limited for very large or complex scenes, especially on older or less powerful hardware.

Code Examples

Here are a few examples of how to use the FCL library:

  1. Performing a Collision Check:
#include <fcl/fcl.hpp>

fcl::Box box1(1.0, 2.0, 3.0);
fcl::Box box2(1.5, 2.5, 3.5);

fcl::Transform3f tf1, tf2;
tf1.setIdentity();
tf2.setIdentity();

fcl::CollisionRequest request;
fcl::CollisionResult result;
bool collision = fcl::collide(&box1, tf1, &box2, tf2, request, result);

if (collision) {
    std::cout << "Collision detected!" << std::endl;
} else {
    std::cout << "No collision detected." << std::endl;
}
  1. Performing a Distance Computation:
#include <fcl/fcl.hpp>

fcl::Sphere sphere1(1.0);
fcl::Box box1(2.0, 3.0, 4.0);

fcl::Transform3f tf1, tf2;
tf1.setIdentity();
tf2.setIdentity();

fcl::DistanceRequest request;
fcl::DistanceResult result;
double distance = fcl::distance(&sphere1, tf1, &box1, tf2, request, result);

std::cout << "Distance: " << distance << std::endl;
  1. Performing a Nearest Neighbor Query:
#include <fcl/fcl.hpp>

std::vector<fcl::CollisionObject<double>*> objects;
// Add collision objects to the vector

fcl::NearestNeighborsRequest request;
fcl::NearestNeighborsResult result;
fcl::nearestNeighbors(objects, request, result);

for (const auto& neighbor : result.nearest_neighbors) {
    std::cout << "Nearest neighbor: " << neighbor << std::endl;
}

Getting Started

To get started with the FCL library, follow these steps:

  1. Install the required dependencies, such as Eigen and Boost, using your system's package manager (e.g., apt-get, brew, yum, etc.).
  2. Clone the FCL repository from GitHub:
    git clone https://github.com/flexible-collision-library/fcl.git
    
  3. Create a build directory and navigate to it:
    cd fcl
    mkdir build
    cd build
    
  4. Configure the project using CM

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

FCL -- The Flexible Collision Library

Linux / OS X Build Status Windows Build status Coverage Coverage Status

FCL is a library for performing three types of proximity queries on a pair of geometric models composed of triangles.

  • Collision detection: detecting whether the two models overlap, and optionally, all of the triangles that overlap.
  • Distance computation: computing the minimum distance between a pair of models, i.e., the distance between the closest pair of points.
  • Tolerance verification: determining whether two models are closer or farther than a tolerance distance.
  • Continuous collision detection: detecting whether the two moving models overlap during the movement, and optionally, the time of contact.
  • Contact information: for collision detection and continuous collision detection, the contact information (including contact normals and contact points) can be returned optionally.

FCL has the following features

  • C++ interface
  • Compilable for either linux or win32 (both makefiles and Microsoft Visual projects can be generated using cmake)
  • No special topological constraints or adjacency information required for input models – all that is necessary is a list of the model's triangles
  • Supported different object shapes:
  • box
  • sphere
  • ellipsoid
  • capsule
  • cone
  • cylinder
  • convex
  • half-space
  • plane
  • mesh
  • octree (optional, octrees are represented using the octomap library http://octomap.github.com)

Installation

Before compiling FCL, please make sure Eigen and libccd (for collision checking between convex objects and is available here https://github.com/danfis/libccd) are installed. For libccd, make sure to compile from github version instead of the zip file from the webpage, because one bug fixing is not included in the zipped version.

Some optional libraries need to be installed for some optional capability of FCL. For octree collision, please install the octomap library from https://octomap.github.io/.

CMakeLists.txt is used to generate makefiles in Linux or Visual studio projects in windows. In command line, run

mkdir build
cd build
cmake ..

Next, in linux, use make to compile the code.

In windows, there will generate a visual studio project and then you can compile the code.

Interfaces

Before starting the proximity computation, we need first to set the geometry and transform for the objects involving in computation. The geometry of an object is represented as a mesh soup, which can be set as follows:

// set mesh triangles and vertice indices
std::vector<Vector3f> vertices;
std::vector<Triangle> triangles;
// code to set the vertices and triangles
...
// BVHModel is a template class for mesh geometry, for default OBBRSS template
// is used
typedef BVHModel<OBBRSSf> Model;
std::shared_ptr<Model> geom = std::make_shared<Model>();
// add the mesh data into the BVHModel structure
geom->beginModel();
geom->addSubModel(vertices, triangles);
geom->endModel();

The transform of an object includes the rotation and translation:

// R and T are the rotation matrix and translation vector
Matrix3f R;
Vector3f T;
// code for setting R and T
...
// transform is configured according to R and T
Transform3f pose = Transform3f::Identity();
pose.linear() = R;
pose.translation() = T;

Given the geometry and the transform, we can also combine them together to obtain a collision object instance and here is an example:

//geom and tf are the geometry and the transform of the object
std::shared_ptr<BVHModel<OBBRSSf>> geom = ...
Transform3f tf = ...
//Combine them together
CollisionObjectf* obj = new CollisionObjectf(geom, tf);

Once the objects are set, we can perform the proximity computation between them. All the proximity queries in FCL follow a common pipeline: first, set the query request data structure and then run the query function by using request as the input. The result is returned in a query result data structure. For example, for collision checking, we first set the CollisionRequest data structure, and then run the collision function:

// Given two objects o1 and o2
CollisionObjectf* o1 = ...
CollisionObjectf* o2 = ...
// set the collision request structure, here we just use the default setting
CollisionRequest request;
// result will be returned via the collision result structure
CollisionResult result;
// perform collision test
collide(o1, o2, request, result);

By setting the collision request, the user can easily choose whether to return contact information (which is slower) or just return binary collision results (which is faster).

For distance computation, the pipeline is almost the same:

// Given two objects o1 and o2
CollisionObjectf* o1 = ...
CollisionObjectf* o2 = ...
// set the distance request structure, here we just use the default setting
DistanceRequest request;
// result will be returned via the collision result structure
DistanceResult result;
// perform distance test
distance(o1, o2, request, result);

For continuous collision, FCL requires the goal transform to be provided (the initial transform is included in the collision object data structure). Beside that, the pipeline is almost the same as distance/collision:

// Given two objects o1 and o2
CollisionObjectf* o1 = ...
CollisionObjectf* o2 = ...
// The goal transforms for o1 and o2
Transform3f tf_goal_o1 = ...
Transform3f tf_goal_o2 = ...
// set the continuous collision request structure, here we just use the default
// setting
ContinuousCollisionRequest request;
// result will be returned via the continuous collision result structure
ContinuousCollisionResult result;
// perform continuous collision test
continuousCollide(o1, tf_goal_o1, o2, tf_goal_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.

// Initialize the collision manager for the first group of objects. 
// FCL provides various different implementations of CollisionManager.
// Generally, the DynamicAABBTreeCollisionManager would provide the best
// performance.
BroadPhaseCollisionManagerf* manager1 = new DynamicAABBTreeCollisionManagerf(); 
// Initialize the collision manager for the second group of objects.
BroadPhaseCollisionManagerf* manager2 = new DynamicAABBTreeCollisionManagerf();
// To add objects into the collision manager, using
// BroadPhaseCollisionManager::registerObject() function to add one object
std::vector<CollisionObjectf*> objects1 = ...
for(std::size_t i = 0; i < objects1.size(); ++i)
manager1->registerObject(objects1[i]);
// Another choose is to use BroadPhaseCollisionManager::registerObjects()
// function to add a set of objects
std::vector<CollisionObjectf*> objects2 = ...
manager2->registerObjects(objects2);
// In order to collect the information during broadphase, CollisionManager
// requires two settings:
// a) a callback to collision or distance; 
// b) an intermediate data to store the information generated during the
//    broadphase computation.
// For convenience, FCL provides default callbacks to satisfy a) and a
// corresponding call back data to satisfy b) for both collision and distance
// queries. For collision use DefaultCollisionCallback and DefaultCollisionData
// and for distance use DefaultDistanceCallback and DefaultDistanceData.
// The default collision/distance data structs are simply containers which
// include the request and distance structures for each query type as mentioned
// above.
DefaultCollisionData collision_data;
DefaultDistanceData distance_data;
// Setup the managers, which is related with initializing the broadphase
// acceleration structure according to objects input
manager1->setup();
manager2->setup();
// Examples for various queries
// 1. Collision query between two object groups and get collision numbers
manager2->collide(manager1, &collision_data, DefaultCollisionFunction);
int n_contact_num = collision_data.result.numContacts(); 
// 2. Distance query between two object groups and get the minimum distance
manager2->distance(manager1, &distance_data, DefaultDistanceFunction);
double min_distance = distance_data.result.min_distance;
// 3. Self collision query for group 1
manager1->collide(&collision_data, DefaultCollisionFunction);
// 4. Self distance query for group 1
manager1->distance(&distance_data, DefaultDistanceFunction);
// 5. Collision query between one object in group 1 and the entire group 2
manager2->collide(objects1[0], &collision_data, DefaultCollisionFunction);
// 6. Distance query between one object in group 1 and the entire group 2
manager2->distance(objects1[0], &distance_data, DefaultDistanceFunction);

For more examples, please refer to the test folder:

  • test_fcl_collision.cpp: provide examples for collision test
  • test_fcl_distance.cpp: provide examples for distance test
  • test_fcl_broadphase.cpp: provide examples for broadphase collision/distance test
  • test_fcl_frontlist.cpp: provide examples for frontlist collision acceleration
  • test_fcl_octomap.cpp: provide examples for collision/distance computation between octomap data and other data types.