update comment

This commit is contained in:
ikpil 2024-07-12 01:54:38 +09:00
parent afe93d084e
commit c5820af20b
1 changed files with 7 additions and 18 deletions

View File

@ -20,25 +20,14 @@ freely, subject to the following restrictions:
namespace DotRecast.Recast namespace DotRecast.Recast
{ {
/** Represents a simple, non-overlapping contour in field space. */ /// Represents a simple, non-overlapping contour in field space.
public class RcContour public class RcContour
{ {
/** Simplified contour vertex and connection data. [Size: 4 * #nverts] */ public int[] verts; //< Simplified contour vertex and connection data. [Size: 4 * #nverts]
public int[] verts; public int nverts; //< The number of vertices in the simplified contour.
public int[] rverts; //< Raw contour vertex and connection data. [Size: 4 * #nrverts]
/** The number of vertices in the simplified contour. */ public int nrverts; //< The number of vertices in the raw contour.
public int nverts; public int reg; //< The region id of the contour.
public int area; //< The area id of the contour.
/** 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;
} }
} }