How To Install coldet on Fedora 34

coldet is 3D Collision Detection Library 3D Collision Detection Library

Introduction

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

What is coldet

This library is an effort to provide a free collision detection library for generic polyhedra. Its purpose is mainly for 3D games where accurate detection is needed between two non-simple objects. Features * Works on any model, even polygon soups. * Uses bounding box hierarchies for fast detection. * Uses additional triangle intersection tests for 100% accuracy. * Provides (upon request) exact point of collision, plus the pair of triangles that collided. * Supports timeout setting, to limit detection time. * Model-Model collision test. * Ray-Model collision test. * Segment-Model collision test. * Sphere-Model collision test. * Ray-Sphere and Sphere-Sphere primitive collision tests. coldet 1.2 27.fc34 x86_64 45 k coldet-1.2-27.fc34.src.rpm fedora 3D Collision Detection Library http LGPLv2+ This library is an effort to provide a free collision detection library for generic polyhedra. Its purpose is mainly for 3D games where accurate detection is needed between two non-simple objects. Features * Works on any model, even polygon soups. * Uses bounding box hierarchies for fast detection. * Uses additional triangle intersection tests for 100% accuracy. * Provides (upon request) exact point of collision, plus the pair of triangles that collided. * Supports timeout setting, to limit detection time. * Model-Model collision test. * Ray-Model collision test. * Segment-Model collision test. * Sphere-Model collision test. * Ray-Sphere and Sphere-Sphere primitive collision tests.

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

Install coldet 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 coldet using dnf by running the following command:

sudo dnf -y install coldet

Install coldet 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 coldet using yum by running the following command:

sudo yum -y install coldet

How To Uninstall coldet on Fedora 34

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

sudo dnf remove coldet

coldet Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/16
/usr/lib/.build-id/16/bdcc13ac38057c1a0f1636200fb0da0d40443d
/usr/lib/libcoldet.so.0
/usr/share/doc/coldet
/usr/share/doc/coldet/COPYING
/usr/share/doc/coldet/readme.txt
/usr/lib/.build-id
/usr/lib/.build-id/36
/usr/lib/.build-id/36/b4c87308fc73d87e51c516f67d793e65e989a6
/usr/lib64/libcoldet.so.0
/usr/share/doc/coldet
/usr/share/doc/coldet/COPYING
/usr/share/doc/coldet/readme.txt

References

Summary

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