https://github.com/jwlodek/libcgeo
A fast cross-platform C library for Computational Geometry
https://github.com/jwlodek/libcgeo
c cmake computational-geometry convex-hull cross-platform graham-scan library triangulation
Last synced: 8 months ago
JSON representation
A fast cross-platform C library for Computational Geometry
- Host: GitHub
- URL: https://github.com/jwlodek/libcgeo
- Owner: jwlodek
- Created: 2019-02-03T03:08:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-28T23:11:28.000Z (almost 7 years ago)
- Last Synced: 2024-12-28T02:43:13.279Z (over 1 year ago)
- Topics: c, cmake, computational-geometry, convex-hull, cross-platform, graham-scan, library, triangulation
- Language: C
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libCGeo
`libCGeo` is an open source, cross-platform, performant C library for Computational Geometry. It allows for simple
function calls for Computational Geometry functions with C and C++ programs. This library is currently in development,
and does not yet have any stable releases.
### Building libCGeo from source
libCGeo can be built from source using CMake. So far, I have only tested this on an Ubuntu 18.04_LTS machine. To build using CMake:
```
mkdir build
cd build
cmake ..
```
and then on linux type `make` to compile the library. This will also compile some example programs.