Skip to content

Commit

Permalink
[ci skip] fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokop committed May 2, 2024
1 parent f427cf2 commit de7eb26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/geometry/ArborX_Tetrahedron.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace ArborX::ExperimentalHyperGeometry
{
// Need to add a protection that the points are not on the same plane
// Need to add a protection that the points are not in the same plane
template <class Coordinate = float>
struct Tetrahedron
{
Expand Down Expand Up @@ -89,7 +89,7 @@ struct intersects<PointTag, TetrahedronTag, Point, Tetrahedron>
Kokkos::Array<decltype(tet.a), N> v = {tet.a, tet.b, tet.c, tet.d};

// For every plane check that the vertex lies within the same halfspace as
// the other tetrahedron vertex. This a simple but possibly not very
// the other tetrahedron vertex. This is a simple but possibly not very
// efficient algorithm.
for (int j = 0; j < N; ++j)
{
Expand Down

0 comments on commit de7eb26

Please sign in to comment.