From a87f34e7381df7b4f3a18c6847ba5f3b6c341d0e Mon Sep 17 00:00:00 2001 From: ikpil Date: Wed, 17 Jul 2024 23:48:11 +0900 Subject: [PATCH] update comment --- src/DotRecast.Recast/RcSpan.cs | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/DotRecast.Recast/RcSpan.cs b/src/DotRecast.Recast/RcSpan.cs index 814d686..9748cd4 100644 --- a/src/DotRecast.Recast/RcSpan.cs +++ b/src/DotRecast.Recast/RcSpan.cs @@ -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. } } \ No newline at end of file