Not getting constructor of LineStripArray

Hi what is int[ ] stripVertexCounts in constructor of LineStripArray


public LineStripArray(int vertexCount, int vertexFormat, int[] stripVertexCounts) { super(GeomContainer.GEOM_LINE_STRIP, vertexCount, vertexFormat, 0, null, stripVertexCounts); }
sorry for bugging but Java Docs does not specify this ,also nothing on this in forums..... thanks in advance

mmh maybe you can have several strips in one LineStripArray? Have you tried to create it like this?:

new LineStriparray(vertexCount, vertexFormat, new int[]{vertexCount});

thanks arne …its working now… :slight_smile: