2015-10-31 76 views
1

我必須使用方法:Array <Vector2>如何定義它?

intersector.isPointInPolygon(Array<Vector2> polygon, Vector2 point); 

,我應該怎麼定義這個數組?

Vector2[]不起作用,並顯示:screen of error

的ArrayList了。

我試着用Array<Vector2> poly 和,但我不知道如何將值添加到

screen of me trying to fill array 這種方式填充陣列不起作用

有人可以幫我嗎?

+0

如何定義類「Array」?你能證明嗎? – Henry

回答

1

好的,問題解決了。我寫了 而不是Array<Vector2> poly = new Array<Vector>(); 並且發生了NullPointerException。

反正謝謝你們;

+0

NullPointerException如何解決您的問題? –

相關問題