THREE.FBO not working for me

Hi,

I just stumbled upon this code here:

But when I try to do same same in my code:

THREE.FBO = function(w, simMat) {
  this.scene = new THREE.Scene();
  this.camera = new THREE.OrthographicCamera(-w/2, w/2, w/2, -w/2, -1, 1);
  this.scene.add(new THREE.Mesh(new THREE.PlaneGeometry(w, w), simMat));
};

// create a scene where we'll render the positional attributes
var fbo = new THREE.FBO(w, simMaterial);

…compiler tells me
Attempted import error: ‘FBO’ is not exported from ‘three/build/three.module.js’ (imported as ‘THREE’).

Is it sort of an extra-lib or do I need to import something additional?
B

Hi!
There are several examples about GPGPU: three.js examples
And several topics on the forum: Search results for 'GPGPU' - three.js forum