Skip to content

Commit

Permalink
replace GLMakie by CairoMakie for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
maltezfaria committed Oct 7, 2023
1 parent a2db9e1 commit 64542ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[deps]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
Gmsh = "705231aa-382f-11e9-3f0c-b7cb4346fdeb"
Inti = "fb74042b-437e-4c5b-88cf-d4e2beb394d5"
4 changes: 2 additions & 2 deletions docs/src/geo_and_meshes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ gmsh.finalize()
- You can plot a `msh` if you have a `Makie` backend (e.g. `GLMakie`)

```@example gmsh-sphere
using GLMakie
using CairoMakie
Γ = Inti.external_boundary(Ω)
poly(view(msh,Γ);strokewidth=1,color=:lightgray, transparency=true)
```
Expand All @@ -40,7 +40,7 @@ Two-dimensional meshes are very similar:
```@example gmsh-disk
using Inti
using Gmsh
using GLMakie
using CairoMakie
gmsh.initialize()
gmsh.option.setNumber("General.Verbosity", 2)
gmsh.model.add("Disk")
Expand Down

0 comments on commit 64542ec

Please sign in to comment.