How To Install libccd on Fedora 34

libccd is Library for collision detection between convex shapes Library for collision detection between convex shapes

Introduction

In this tutorial we learn how to install libccd on Fedora 34.

What is libccd

libccd implements variation on Gilbert-Johnson-Keerthi (GJK) algorithm + Expand Polytope Algorithm (EPA). It also implements Minkowski Portal Refinement (MPR, a.k.a. XenoCollide) algorithm as published in Game Programming Gems 7. libccd 2.1 4.fc34 x86_64 32 k libccd-2.1-4.fc34.src.rpm fedora Library for collision detection between convex shapes http BSD libccd implements variation on Gilbert-Johnson-Keerthi (GJK) algorithm + Expand Polytope Algorithm (EPA). It also implements Minkowski Portal Refinement (MPR, a.k.a. XenoCollide) algorithm as published in Game Programming Gems 7.

We can use yum or dnf to install libccd on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libccd.

Install libccd on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libccd using dnf by running the following command:

sudo dnf -y install libccd

Install libccd on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libccd using yum by running the following command:

sudo yum -y install libccd

How To Uninstall libccd on Fedora 34

To uninstall only the libccd package we can use the following command:

sudo dnf remove libccd

libccd Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/79
/usr/lib/.build-id/79/2d28ef7c17b88e468456e7d706ff182be7e866
/usr/lib64/libccd.so.2
/usr/lib64/libccd.so.2.1
/usr/share/doc/libccd
/usr/share/doc/libccd/BSD-LICENSE
/usr/share/doc/libccd/README.md
/usr/lib/.build-id
/usr/lib/.build-id/c1
/usr/lib/.build-id/c1/7b71cedf938c66f4ac0dc3782bf8d411f1b096
/usr/lib/libccd.so.2
/usr/lib/libccd.so.2.1
/usr/share/doc/libccd
/usr/share/doc/libccd/BSD-LICENSE
/usr/share/doc/libccd/README.md

References

Summary

In this tutorial we learn how to install libccd on Fedora 34 using yum and dnf.