You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use DelaunayTriangulation.jl, please cite it. There is a JOSS paper published at [https://doi.org/10.21105/joss.07174](https://doi.org/10.21105/joss.07174). The BibTeX entry for this paper is:
135
+
136
+
```bibtex
137
+
@article{VandenHeuvel2024DelaunayTriangulation,
138
+
author = {VandenHeuvel, Daniel J.},
139
+
doi = {10.21105/joss.07174},
140
+
journal = {Journal of Open Source Software},
141
+
month = sep,
142
+
number = {101},
143
+
pages = {7174},
144
+
title = {{DelaunayTriangulation.jl: A Julia package for Delaunay triangulations and Voronoi tessellations in the plane}},
Copy file name to clipboardExpand all lines: docs/src/index.md
+23-4Lines changed: 23 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@ This is a package for computing Delaunay triangulations and Voronoi tessellation
23
23
To ensure that the algorithms are robust, by default we make use of [AdaptivePredicates.jl](https://github.com/JuliaGeometry/AdaptivePredicates.jl) to use
24
24
adaptive arithmetic for all geometric predicates in this package. This choice can be configured, allowing for the additional choices of [ExactPredicates.jl](https://github.com/lairez/ExactPredicates.jl) or no adaptive or exact arithmetic at all; see [here](manual/predicate_kernels.md). Much of the work in this package is derived from the book [*Delaunay Mesh Generation* by Cheng, Dey, and Shewchuk (2013)](https://people.eecs.berkeley.edu/~jrs/meshbook.html).
25
25
26
+
If you would like to make an issue or contribute, please see the CONTRIBUTION.md file in the repository. For feature requests, please see the discussions tab.
27
+
26
28
# Documentation Structure
27
29
28
30
The documentation for this package is broken into several sections.
@@ -35,11 +37,9 @@ The documentation for this package is broken into several sections.
35
37
-**Example Applications**: In case you want to use this package for some of your applications, it might be useful to see how it has been applied in certain situations. Only a few applications are considered here, but more could be added in the future.
36
38
-**Terminology**: This section provides a short description of some of the terminology used throughout the package.
37
39
38
-
If you see anything missing in any of these sections, or anything you think could be improved, feel free to file an issue.
40
+
If you would also like to see how DelaunayTriangulation.jl is used in other packages, see [FiniteVolumeMethod.jl](https://github.com/SciML/FiniteVolumeMethod.jl) (solving 2D PDEs) and [NaturalNeighbours.jl](https://github.com/DanielVandH/NaturalNeighbours.jl) (scattered data interpolation).
39
41
40
-
# Citing DelaunayTriangulation.jl
41
-
42
-
If you use DelaunayTriangulation.jl, please cite it. For now, we have a Zenodo record available at [10.5281/zenodo.7456989](https://doi.org/10.5281/zenodo.7456989).
42
+
If you see anything missing in any of these sections, or anything you think could be improved, feel free to file an issue.
43
43
44
44
# Installation
45
45
@@ -50,6 +50,25 @@ import Pkg
50
50
Pkg.add("DelaunayTriangulation")
51
51
```
52
52
53
+
# Citing DelaunayTriangulation.jl
54
+
55
+
If you use DelaunayTriangulation.jl, please cite it. There is a JOSS paper published at https://doi.org/10.21105/joss.0717. The BibTeX entry for this paper is:
56
+
57
+
```bibtex
58
+
@article{VandenHeuvel2024DelaunayTriangulation,
59
+
author = {VandenHeuvel, Daniel J.},
60
+
doi = {10.21105/joss.07174},
61
+
journal = {Journal of Open Source Software},
62
+
month = sep,
63
+
number = {101},
64
+
pages = {7174},
65
+
title = {{DelaunayTriangulation.jl: A Julia package for Delaunay triangulations and Voronoi tessellations in the plane}},
0 commit comments