https://github.com/jdumas/geotools
A collection of small utilities written using Geogram.
https://github.com/jdumas/geotools
c-plus-plus geogram geometry-processing
Last synced: 9 months ago
JSON representation
A collection of small utilities written using Geogram.
- Host: GitHub
- URL: https://github.com/jdumas/geotools
- Owner: jdumas
- License: gpl-3.0
- Created: 2016-07-18T19:56:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T02:09:58.000Z (about 7 years ago)
- Last Synced: 2025-04-03T02:02:25.471Z (10 months ago)
- Topics: c-plus-plus, geogram, geometry-processing
- Language: C++
- Homepage:
- Size: 145 KB
- Stars: 9
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Geogram Tools
=============
[](https://travis-ci.com/jdumas/geotools) [](https://ci.appveyor.com/project/jdumas/geotools)
A collection of small utilities made using the [geogram](http://alice.loria.fr/software/geogram/doc/html/index.html) library (mostly).
Compilation
-----------
Compile with CMake:
```
mkdir build
cd build
cmake ..
make -j4
```
[Normalize Mesh](normalize_mesh)
---------------------------
Rescale a mesh to fit in a unit box, and set its min corner to 0.
[Poisson Disk Sampling](poisson_disk)
------------------------------------
Simple Poisson disk sampling in a 3D grid based on Bridson's 2007 [paper](http://dx.doi.org/10.1145/1278780.1278807).
[VoxMesh](voxmesh)
------------------
A simple voxelization program, which takes a surface mesh as input.