我得到了一个意外的arrayindexoutofboundsexception;有人能帮忙吗?
我创建了两个多边形,如下所示:

float[]vertice={.1f, 2.7f, .4f, 4.3f, 3.4f, 5.3f, 5.6f, 3.3f, 3.3f, .1f};
Polygon oPolygon1=new Polygon(vertice);

float[]vertice2={.2f,1.3f,1.9f,4.5f,4.1f,1.3f};
Polygon oPolygon2=new Polygon(vertice2);

更新他们的位置:
oPolygon1.setPosition(x1,y1);
oPolygon2.setPosition(x2,y2);

但当我试图使用Intersector来查看它们是否重叠时…
if(Intersector.overlapConvexPolygons( oPolygon1, oPolygon2)){
   //do something
}

…我得到以下错误:
线程“lwjgl应用程序”中出现异常
java.lang.ArrayIndexOutOfBoundsException:异常:
在这个代码块中的Intersector
// projection axis is perpendicular to potential separation axis edge i->j
float projX = verts1[j + 1] - verts1[i + 1];
float projY = verts1[i] - verts1[j];

最佳答案

这似乎是libgdx中的一个错误。在行设置projx中,它应该包装索引

float projX = verts1[(j + 1) % length1] - verts1[i + 1];

我会在SVN里解决的。

10-08 18:20