Skip to content

Commit

Permalink
Fix the test
Browse files Browse the repository at this point in the history
  • Loading branch information
lvchien committed Nov 4, 2024
1 parent 604531c commit 7d250c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/primitives.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1514,9 +1514,9 @@ function meshuniformtetrahedron(edgelength, h)

fno = tempname() * ".msh"
gmsh.initialize()
gmsh.model.add("tetrhedron")
gmsh.model.add("tetrahedron")

c = edgelength/22
c = edgelength/(2sqrt(2))
gmsh.model.geo.addPoint(c, c, c, h, 1)
gmsh.model.geo.addPoint(-c, -c, c, h, 2)
gmsh.model.geo.addPoint(-c, c, -c, h, 3)
Expand Down

0 comments on commit 7d250c2

Please sign in to comment.