我正在尝试在Three.Js中构建一个弯曲的BoxGeometry,但我不知道如何构建它。它应该在图片中看起来像那样。enter image description here
这是我当前的代码,但它还没有弯曲。
var testGeometry = new THREE.BoxGeometry(50, 300, 10),
testMaterial = new THREE.MeshBasicMaterial({color: 0xE3AA24});
答案 0 :(得分:0)
您可以使用自定义顶点和面的基础THREE.Geometry,或尝试此解决方案https://stackoverflow.com/a/41199867/7297451