Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from recastnavigation:main #30

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Docs/Extern/Recast_api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -650,29 +650,29 @@ if (((flags >> 2) & 0x3) != 0)
}
@endcode

@fn void rcSetCon(rcCompactSpan &s, int dir, int i)
@fn void rcSetCon(rcCompactSpan &span, int direction, int neighborIndex)
@par

This function is used by the build process. It is rarely of use to end users.

@see #rcCompactHeightfield, #rcCompactSpan

@fn int rcGetCon(const rcCompactSpan &s, int dir)
@fn int rcGetCon(const rcCompactSpan &span, int direction)
@par

Can be used to locate neighbor spans in a compact heightfield. See the
#rcCompactHeightfield documentation for details on its use.

@see #rcCompactHeightfield, #rcCompactSpan

@fn int rcGetDirOffsetX(int dir)
@fn int rcGetDirOffsetX(int direction)
@par

The value of @p dir will be automatically wrapped. So a value of 6 will be interpreted as 2.

See the #rcCompactHeightfield documentation for usage details.

@fn int rcGetDirOffsetY(int dir)
@fn int rcGetDirOffsetY(int direction)
@par

The value of @p dir will be automatically wrapped. So a value of 6 will be interpreted as 2.
Expand Down
Loading