I am trying to convert Buffergeometry to geometry.
I am using three 0.134.0.
And I tried like this.
let geometryconvert = new THREE.Geometry().fromBufferGeometry(geometry);
But I have got this error.
Attempted import error: 'Geometry' is not exported from 'three' (imported as 'THREE').
What is the best way to convert buffergeometry to geometry.
From r125, THREE.Geometry is deprecated.
https://discourse.threejs.org/t/three-geometry-will-be-removed-from-core-with-r125/22401
That is why you are hitting this error.
From r125 onwards, you can't do anything with Geometry. You will need to work directly with BufferGeometry instead.