Transforming Geometry to BufferGeometry

15.5k Views Asked by At

As I understand it, Geometry stores a javascript object structure of the vertices and faces and BufferGeometry just stores the raw gl data via Float32Arrays, etc.

Is there any way to turn standard Geometry into BufferGeometry, which is a lot more memory compact with less objects? For example if I create a new SphereGeometry, is there a way to easily transform that to a BufferGeometry?

1

There are 1 best solutions below

6
On BEST ANSWER

This answer only applies to versions of three.js prior to r.125.

The Legacy Geometry class has been removed.


var bufferGeometry = new THREE.BufferGeometry().fromGeometry( geometry );

three.js r.124