我正在3D图形中使用react-three-renderer显示点,并出现问题“无法读取未定义的属性'boundingSphere'”。下面是我的代码。请帮我解决这个问题。
{
points &&
points.map(p => ( <
points key = {
p.clusterId
}
position = {
new THREE.Vector3(p.xdim, p.ydim, p.zdim)
} >
<
pointsMaterial color = {
'#6ddff2'
}
/> <
/points>
))
}