Hi,
i display the vertices and triangles count on model selected.
When is a Geometry is simple as using vertices.length and faces.length.
But when is a BufferGeometry.
The vertices = attributes.position.count.
There is no faces attribute, so just divide this by 3 for the triangles and it seem ok
And when is index.
The index.count can be much higher and even divided by 3 the triangles is greater than the vertices count.
What is the real good value to use as vertices count when is index ?
The attributes.position.count or the index.count ?
thx.