Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Jul 11, 2024
1 parent afe93d0 commit c5820af
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions src/DotRecast.Recast/RcContour.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,14 @@ 3. This notice may not be removed or altered from any source distribution.

namespace DotRecast.Recast
{
/** Represents a simple, non-overlapping contour in field space. */
/// Represents a simple, non-overlapping contour in field space.
public class RcContour
{
/** Simplified contour vertex and connection data. [Size: 4 * #nverts] */
public int[] verts;

/** The number of vertices in the simplified contour. */
public int nverts;

/** Raw contour vertex and connection data. [Size: 4 * #nrverts] */
public int[] rverts;

/** The number of vertices in the raw contour. */
public int nrverts;

/** The region id of the contour. */
public int area;

/** The area id of the contour. */
public int reg;
public int[] verts; //< Simplified contour vertex and connection data. [Size: 4 * #nverts]
public int nverts; //< The number of vertices in the simplified contour.
public int[] rverts; //< Raw contour vertex and connection data. [Size: 4 * #nrverts]
public int nrverts; //< The number of vertices in the raw contour.
public int reg; //< The region id of the contour.
public int area; //< The area id of the contour.
}
}

0 comments on commit c5820af

Please sign in to comment.