In this playground I create a cube then get its vertices data
https://www.babylonjs-playground.com/#LQDMJ6
When I get the vertices data using
box.getVerticesData(BABYLON.VertexBuffer.PositionKind);
I get an array containing 72 elements
How come?
A cube has 8 vertices
Shouldn't the array have only 8*3 = 24 elements ?
Same thing with NormalKind. I get an array with 72 elements!