Skip to content

Commit

Permalink
Fixed and extended testing for extrude faces
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-Mattheus-Moerman committed Jun 17, 2024
1 parent 8c74dc0 commit 79174b2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5367,7 +5367,10 @@ end
direction = :wrong
@test_throws Exception extrudefaces(F,V; extent=d, direction=direction, num_steps=num_steps)

d = 2.0
num_steps = 5
F = LineFace{Int64}[ [1,2], [3,4] ]
V = Point{3,Float64}[ [0.0,0.0,0.0], [1.0,0.0,0.0], [1.0,1.0,0.0], [2.0,0.0,0.0]]
@test_throws Exception extrudefaces(F,V; extent=d, direction=:positive, num_steps=num_steps)
end
end
Expand Down

0 comments on commit 79174b2

Please sign in to comment.