Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Lampert <[email protected]>
  • Loading branch information
mikeingold and JoshuaLampert authored Dec 27, 2024
1 parent a5dfa5f commit 1866636
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/specializations/Tetrahedron.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ end
# Parametric
################################################################################

# Map argument domain from [0, 1]³ to Barycentric domain for (::Tetrahedron)(t1, t2, t3)
# Map argument domain from [0, 1]³ to Barycentric domain for (::Tetrahedron)(t₁, t₂, t₃)
function _parametric(tetrahedron::Meshes.Tetrahedron)
function f(t₁, t₂, t₃)
if any(Iterators.map(n -> (n < 0) || (n > 1), (t₁, t₂, t₃)))
Expand Down
2 changes: 1 addition & 1 deletion src/specializations/Triangle.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ end
# Parametric
################################################################################

# Map argument domain from [0, 1]² to Barycentric domain for (::Triangle)(t1, t2)
# Map argument domain from [0, 1]² to Barycentric domain for (::Triangle)(t₁, t₂)
function _parametric(triangle::Meshes.Triangle)
function f(t₁, t₂)
if any(Iterators.map(n -> (n < 0) || (n > 1), (t₁, t₂)))
Expand Down

0 comments on commit 1866636

Please sign in to comment.