Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Nov 28, 2024
1 parent b198309 commit 2b89707
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DotRecast.Detour/DtNavMesh.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1031,9 +1031,9 @@ void BaseOffMeshLinks(DtMeshTile tile)
*/
RcVec3f ClosestPointOnDetailEdges(DtMeshTile tile, DtPoly poly, RcVec3f pos, bool onlyBoundary)
{
int ANY_BOUNDARY_EDGE = (DtDetailTriEdgeFlags.DT_DETAIL_EDGE_BOUNDARY << 0) |
(DtDetailTriEdgeFlags.DT_DETAIL_EDGE_BOUNDARY << 2) |
(DtDetailTriEdgeFlags.DT_DETAIL_EDGE_BOUNDARY << 4);
const int ANY_BOUNDARY_EDGE = (DtDetailTriEdgeFlags.DT_DETAIL_EDGE_BOUNDARY << 0) |
(DtDetailTriEdgeFlags.DT_DETAIL_EDGE_BOUNDARY << 2) |
(DtDetailTriEdgeFlags.DT_DETAIL_EDGE_BOUNDARY << 4);
int ip = poly.index;
float dmin = float.MaxValue;
float tmin = 0;
Expand Down

0 comments on commit 2b89707

Please sign in to comment.