forked from mirror/DotRecast
update comment
This commit is contained in:
parent
cf7aec90ee
commit
a87f34e738
|
@ -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.
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue