three.js Gemeotry 创建Sence实例的时候没有poistion对象

问题遇到的现象和发生背景

最近在搞3d方面的东西需要用的3d曲面热力图所以用到了Gemeotry创建面,但是现在的Gemeotry没有poistion属性所以导致sence创建的时候报错poistion未定义

问题相关代码,请勿粘贴截图
  this.gemo = new Geometry()
  this.side_gemo = new Geometry()
  let material=new THREE.MeshBasicMaterial({vertexColors:THREE.VertexColors, side:THREE.DoubleSide})
  const mesh=new THREE.Mesh(this.gemo,material)
  this.scene.add(mesh)
运行结果及报错内容

img

我的解答思路和尝试过的方法

我尝试过应用低版本的Geomeotry但是不行

我想要达到的结果

scene场景内能把mesh加进去