Skip to content

Commit b77196a

Browse files
committed
Update README.md (#43)
1 parent ecc3a49 commit b77196a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ When installing TetGen.jl, a compiled library version of the TetGen library will
1818

1919
See the [TetGen Licensing FAQ](http://wias-berlin.de/software/tetgen/1.5/FAQ-license.html) for other options.
2020

21-
## Example using GeometryBasics datatypes
21+
## Example using GeometryBasics v0.5 datatypes
2222

2323
```julia
2424
using TetGen
@@ -44,14 +44,14 @@ facets = QuadFace{Cint}[
4444

4545
markers = Cint[-1, -2, 0, 0, 0, 0]
4646
# attach some additional information to our faces!
47-
mesh = Mesh(points, meta(facets, markers=markers))
48-
result = tetrahedralize(mesh, "vpq1.414a0.1")
47+
mymesh = GeometryBasics.MetaMesh(points, facets; markers)
48+
result = tetrahedralize(mymesh, "vpq1.414a0.1")
4949

5050
using GLMakie
5151

52-
GLMakie.mesh(normal_mesh(result), color=(:blue, 0.1), transparency=true)
53-
GLMakie.wireframe!(result)
52+
GLMakie.mesh(result, color=(:blue, 0.05), transparency=true, shading=NoShading)
5453

54+
GLMakie.wireframe!(result, color=:black)
5555
```
5656

5757
Plotted with Makie:

0 commit comments

Comments
 (0)