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
- Host: GitHub
- URL: https://github.com/fougue/claudette
- Owner: fougue
- License: lgpl-2.1
- Created: 2012-11-29T15:09:25.000Z (almost 13 years ago)
- Default Branch: develop
- Last Pushed: 2017-05-04T15:01:19.000Z (over 8 years ago)
- Last Synced: 2024-03-26T21:50:37.358Z (over 1 year ago)
- Topics: 3d, coldet, collision-detection, ray, sphere
- Language: C++
- Homepage:
- Size: 226 KB
- Stars: 14
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
[](https://travis-ci.org/fougue/claudette)
[](https://github.com/fougue/claudette/blob/develop/COPYING)
[](https://github.com/fougue/claudette/releases)Claudette v0.1 by Fougue Ltd, fork of
ColDet - 3D Collision Detection Library
Copyright (C) 2000 Amir GevaDescription
===========================================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 infrastructureRequirements
===========================================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.proOriginal author of ColDet:
Web Site: http://sourceforge.net/projects/coldet
contact: https://github.com/amirgevaHwow 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.