19 lines
179 B
Markdown
19 lines
179 B
Markdown
|
## A C++ implementation of the 2D Delaunay triangulation using the Bowyer-Watson algorithm.
|
||
|
|
||
|
### compile
|
||
|
|
||
|
```shell
|
||
|
g++ demo.cpp
|
||
|
```
|
||
|
|
||
|
### run
|
||
|
|
||
|
```shell
|
||
|
./a.out > demo.off
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|