PlaneBufferGeometry到底是什么?与PlaneGeometry有何不同? (r69)
最佳答案
PlaneBufferGeometry
是 PlaneGeometry
的低内存替代方案。对象本身在很多方面有所不同。例如,位于PlaneBufferGeometry中的顶点位于PlaneBufferGeometry.attributes.position
中,而不是PlaneGeometry.vertices
中
您可以在浏览器控制台中快速浏览以找出更多差异,但是据我所知,由于顶点通常彼此之间的间距相等(X
和Y
),因此仅需要高度(Z
)被赋予定位顶点的位置。
关于javascript - Three.js-什么是PlaneBufferGeometry,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27198525/