diff --git a/docs/src/MeshData.md b/docs/src/MeshData.md index 1edac63b..2bea0cf5 100644 --- a/docs/src/MeshData.md +++ b/docs/src/MeshData.md @@ -74,7 +74,7 @@ More generally, one can create a copy of a `MeshData` with certain fields modifi ## Unstructured and pre-defined triangular meshes using Triangulate.jl -StartUpDG.jl also includes additional utilities based on Triangulate.jl for creating and visualizing meshes. Several pre-defined geometries are included in StartUpDG.jl. A few examples are `SquareDomain`, `RectangularDomainWithHole`, `Scramjet`, and `CircularDomain`. See `triangulate_example_meshes.jl` for a more complete list and field arguments. These can each be called using `triangulate_domain`, for example the following code will create a mesh of a scramjet: +StartUpDG.jl also includes additional utilities based on Triangulate.jl for creating and visualizing meshes. Several pre-defined geometries are included in StartUpDG.jl. A few examples are `SquareDomain`, `RectangularDomainWithHole`, `Scramjet`, and `CircularDomain`. See [`triangulate_example_meshes.jl`](https://github.com/jlchan/StartUpDG.jl/blob/main/src/mesh/triangulate_example_meshes.jl) for a more complete list and field arguments. These can each be called using `triangulate_domain`, for example the following code will create a mesh of a scramjet: ```julia meshIO = triangulate_domain(Scramjet()) (VX, VY), EToV = triangulateIO_to_VXYEToV(meshIO)