Skip to content

Commit

Permalink
🤖 Format .jl files (#802)
Browse files Browse the repository at this point in the history
Co-authored-by: juliohm <3345261+juliohm@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and juliohm authored Mar 17, 2024
1 parent 25cea26 commit eb3b0aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/distances.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
l = Line(P2(68, 260), P2(69, 261))
@test evaluate(Euclidean(), p, l) T(0.8)

line1 = Line(P3(-1,0,0), P3(1,0,0))
line2 = Line(P3(0,-1,1), P3(0,1,1)) # line2 ⟂ line1, z++
line3 = Line(P3(-1,1,0), P3(1,1,0)) # line3 ∥ line1
line4 = Line(P3(-2,0,0), P3(2,0,0)) # line4 colinear with line1
line5 = Line(P3(0,-1,0), P3(0,1,0)) # line5 intersects line1
line1 = Line(P3(-1, 0, 0), P3(1, 0, 0))
line2 = Line(P3(0, -1, 1), P3(0, 1, 1)) # line2 ⟂ line1, z++
line3 = Line(P3(-1, 1, 0), P3(1, 1, 0)) # line3 ∥ line1
line4 = Line(P3(-2, 0, 0), P3(2, 0, 0)) # line4 colinear with line1
line5 = Line(P3(0, -1, 0), P3(0, 1, 0)) # line5 intersects line1
@test evaluate(Euclidean(), line1, line2) T(1)
@test evaluate(Euclidean(), line1, line3) T(1)
@test evaluate(Euclidean(), line1, line4) T(0)
Expand Down

0 comments on commit eb3b0aa

Please sign in to comment.