From c5820af20ba80f83e4be008b72e04854e8d3d4af Mon Sep 17 00:00:00 2001 From: ikpil Date: Fri, 12 Jul 2024 01:54:38 +0900 Subject: [PATCH] update comment --- src/DotRecast.Recast/RcContour.cs | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/src/DotRecast.Recast/RcContour.cs b/src/DotRecast.Recast/RcContour.cs index df78da5..631f943 100644 --- a/src/DotRecast.Recast/RcContour.cs +++ b/src/DotRecast.Recast/RcContour.cs @@ -20,25 +20,14 @@ freely, subject to the following restrictions: 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. } } \ No newline at end of file