How ot get vertices, faces, faceVertexUvs from bufferGeometry

Hi!
BufferGeometry has different structure from Geometry.
Vertices: geometry.attributes.position.
Faces: if your geometry has no index, then a face defined by three consequent vertices, otherwise, by three consequent indices of vertices in index.
UVs: geometry.attributes.uv

2 Likes