In net.java.games.jogl.impl.tesselator.Render.java, line 306 of the Sept 5 release, the line
tess.callVertexOrVertexData( e.Org.data);
should be
tess.callVertexOrVertexData( e.Org.coords);
The vertex(coords) and vertexData(coords, userData) callbacks were getting the userData information in place of the coords.
pdj