https://github.com/jchristopherson/geompack
A modernization of the GEOMPACK library for computing Delaunay triangulations.
https://github.com/jchristopherson/geompack
delaunay-triangulation fortran fortran-package-manager geometry triangulation triangulation-delaunay
Last synced: 10 months ago
JSON representation
A modernization of the GEOMPACK library for computing Delaunay triangulations.
- Host: GitHub
- URL: https://github.com/jchristopherson/geompack
- Owner: jchristopherson
- License: gpl-3.0
- Created: 2023-09-13T20:27:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-28T21:57:30.000Z (almost 2 years ago)
- Last Synced: 2024-02-28T22:44:32.810Z (almost 2 years ago)
- Topics: delaunay-triangulation, fortran, fortran-package-manager, geometry, triangulation, triangulation-delaunay
- Language: Fortran
- Homepage:
- Size: 858 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# geompack
A modernization of the GEOMPACK library for computing Delaunay triangulations.
## Status

[](https://github.com/jchristopherson/geompack/actions)
## Documentation
Documentation can be found [here](https://jchristopherson.github.io/geompack/)
## Building GEOMPACK
[CMake](https://cmake.org/)This library can be built using CMake. For instructions see [Running CMake](https://cmake.org/runningcmake/).
[FPM](https://github.com/fortran-lang/fpm) can also be used to build this library using the provided fpm.toml.
```txt
fpm build
```
The GEOMPACK library can be used within your FPM project by adding the following to your fpm.toml file.
```toml
[dependencies]
geompack = { git = "https://github.com/jchristopherson/geompack" }
```