Package org.recast4j.recast
Class Contour
java.lang.Object
org.recast4j.recast.Contour
public class Contour
extends java.lang.Object
Represents a simple, non-overlapping contour in field space.
-
Field Summary
Fields Modifier and Type Field Description intareaThe region id of the contour.intnrvertsThe number of vertices in the raw contour.intnvertsThe number of vertices in the simplified contour.intregThe area id of the contour.int[]rvertsRaw contour vertex and connection data.int[]vertsSimplified contour vertex and connection data. -
Constructor Summary
Constructors Constructor Description Contour() -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
verts
public int[] vertsSimplified contour vertex and connection data. [Size: 4 * #nverts] -
nverts
public int nvertsThe number of vertices in the simplified contour. -
rverts
public int[] rvertsRaw contour vertex and connection data. [Size: 4 * #nrverts] -
nrverts
public int nrvertsThe number of vertices in the raw contour. -
area
public int areaThe region id of the contour. -
reg
public int regThe area id of the contour.
-
-
Constructor Details
-
Contour
public Contour()
-