add VertexItem.getSize()
This commit is contained in:
parent
39c0fcafea
commit
3161013481
@ -46,6 +46,14 @@ public class VertexItem extends Inlist<VertexItem> {
|
|||||||
VertexItem.pool.releaseAll(this);
|
VertexItem.pool.releaseAll(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getSize() {
|
||||||
|
int size = used;
|
||||||
|
for (VertexItem it = next; it != null; it = it.next)
|
||||||
|
size += it.used;
|
||||||
|
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
public final short[] vertices = new short[SIZE];
|
public final short[] vertices = new short[SIZE];
|
||||||
|
|
||||||
public int used;
|
public int used;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user