编辑于 2024年01月06日 05:50 答案: Thealias for geometry generators has been deprecated withand is now removed in latestversions. Useinstead of. PlaneBufferGeometry 这个写法已经被弃用,直接写 PlaneGeometry 就可以。 分享至 投诉或建议 评论3
{Float32Array} first * @param {Float32Array} second * @returns {Float32Array} * @constructor */ function Float32ArrayConcat(first, second) { var firstLength = first.length, result = new Float32Array(firstLength + second.length); result.set(first); result.set(second, firstLength); ...