An open API service indexing awesome lists of open source software.

https://github.com/fougue/claudette

Claudette is a fork of ColDet - 3D Collision Detection Library
https://github.com/fougue/claudette

3d coldet collision-detection ray sphere

Last synced: 5 months ago
JSON representation

Claudette is a fork of ColDet - 3D Collision Detection Library

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/fougue/claudette.svg?branch=develop)](https://travis-ci.org/fougue/claudette)
[![License](https://img.shields.io/badge/license-LGPL%202.1-blue.svg)](https://github.com/fougue/claudette/blob/develop/COPYING)
[![Version](https://img.shields.io/badge/version-v0.1.0-blue.svg?style=flat)](https://github.com/fougue/claudette/releases)

Claudette v0.1 by Fougue Ltd, fork of

ColDet - 3D Collision Detection Library
Copyright (C) 2000 Amir Geva

Description
===========================================

ColDet is a 3D collision detection library, intended for games.
It supports generic polyhedra, and even polygon soups.

As ColDet is no longer actively maintained, Fougue decided to fork the project
to keep it up to date :
* ensure source code builds with recent C/C++ compilers
* use GitHub as main project infrastructure

Requirements
===========================================

It is written in standard C++ and can be compiled on Windows or GNU/Linux systems

Other systems that have g++ will probably compile with no modification.
The code is portable to any system with a standard C++ compliant compiler
(as compliant as they get)

Installation
===========================================

Claudette can be built with CMake, by default a shared library is generated.
1. For an out-of-source build, create a directory where the build will take place (say `build`)
2. Call cmake, passing as argument the directory where is located `CMakeLists.txt`
3. `(n)make`
4. `(n)make install`

Read `CMakeLists.txt` to figure out how to build debug and release libraries.

Documentation
===========================================

The HTML reference manual generated by Doxygen is [here](http://www.fougue.pro/docs/claudette/0.1/annotated.html)

License
===========================================

It is distributed under the Library GNU Lesser Public License (see the file: COPYING)
Any redistribution of the files in this package must include the entire package.

Contact Information
===========================================

Fougue:
Web Site: http://www.fougue.pro
email: contact@fougue.pro

Original author of ColDet:
Web Site: http://sourceforge.net/projects/coldet
contact: https://github.com/amirgeva

Hwow to report a bug
===========================================

If you think you have found a bug in Claudette, we would like to hear
about it so that we can fix it.
The Claudette bug tracking system is open to the public at https://github.com/fougue/claudette/issues.

Before reporting a bug, please use the bug-tracker's search functions
to see if the issue is already known.

Always include the following information in your bug report:
* the name and version number of your compiler;
* the name and version number of your operating system;
* the version of Claudette you are using, and what options it was compiled with.

If the problem you are reporting is only visible at run-time, try to
create a small test program that shows the problem when run.