From 4e37ae26c94bf5d551e15c4e09d047d4164d0f52 Mon Sep 17 00:00:00 2001 From: Gustl22 Date: Tue, 19 Mar 2019 14:09:35 +0100 Subject: [PATCH] Tessellator: improve docs (#701) --- vtm/src/org/oscim/utils/Tessellator.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vtm/src/org/oscim/utils/Tessellator.java b/vtm/src/org/oscim/utils/Tessellator.java index 1b690e1d..26a7ed98 100644 --- a/vtm/src/org/oscim/utils/Tessellator.java +++ b/vtm/src/org/oscim/utils/Tessellator.java @@ -32,14 +32,14 @@ public class Tessellator { * Special version for ExtrusionLayer to match indices with vertex positions. * Tessellates polygon in tris elements. * - * @param points the {@link org.oscim.core.GeometryBuffer#points} - * @param ppos the {@link org.oscim.core.GeometryBuffer#pointNextPos} (not needed) - * @param numPoints equals ppos? - * @param index the {@link org.oscim.core.GeometryBuffer#index} - * @param ipos the {@link org.oscim.core.GeometryBuffer#indexCurrentPos} + * @param points the {@link GeometryBuffer#points} + * @param ppos the start point in {@link GeometryBuffer#points} (not needed) + * @param numPoints the points array size {@link GeometryBuffer#pointNextPos} + * @param index the {@link GeometryBuffer#index} + * @param ipos the {@link GeometryBuffer#indexCurrentPos} * @param numRings the number of ring polygons * @param vertexOffset shift outTris index with offset - * @param outTris the tessellated polygon as triangular {@link org.oscim.renderer.bucket.VertexData} + * @param outTris the tessellated polygon as triangular {@link VertexData} * @return number of indices of outTris */ public static int tessellate(float[] points, int ppos, int numPoints, int[] index,