update comment

This commit is contained in:
ikpil 2024-07-17 23:48:11 +09:00
parent cf7aec90ee
commit a87f34e738
1 changed files with 6 additions and 12 deletions

View File

@ -20,19 +20,13 @@ freely, subject to the following restrictions:
namespace DotRecast.Recast
{
/** Represents a span in a heightfield. */
/// Represents a span in a heightfield.
/// @see rcHeightfield
public class RcSpan
{
/** The lower limit of the span. [Limit: < smax] */
public int smin;
/** The upper limit of the span. [Limit: <= SPAN_MAX_HEIGHT] */
public int smax;
/** The area id assigned to the span. */
public int area;
/** The next span higher up in column. */
public RcSpan next;
public int smin; //< The lower limit of the span. [Limit: < #smax]
public int smax; //< The upper limit of the span. [Limit: <= #RC_SPAN_MAX_HEIGHT]
public int area; //< The area id assigned to the span.
public RcSpan next; //< The next span higher up in column.
}
}