如何从 SCNVector3 在 SceneKit 中生成凹面或凸面多边形平面

Posted

技术标签:

【中文标题】如何从 SCNVector3 在 SceneKit 中生成凹面或凸面多边形平面【英文标题】:How to generating a concave or convex polygon plane in SceneKit from SCNVector3 【发布时间】:2020-04-28 14:40:57 【问题描述】:

我正在尝试以具有自定义形状的平面的形式创建自定义 SCNGeometry,它可以放置在 ARKit 会话中。我在以下方法中使用选项 SCNGeometryPrimitiveTypePolygon 似乎工作正常:

extension SCNGeometry 

    class func polygonfrom(vectices: [SCNVector3]) -> SCNGeometry 
        let indices: [Int32] = getIndices(count: vectices.count)
        let indexData = Data(bytes: indices, count: indices.count * MemoryLayout<Int32>.size)
        let source = SCNGeometrySource(vertices: vectices)
        let element = SCNGeometryElement(data: indexData, primitiveType: .polygon, primitiveCount: 1, bytesPerIndex: MemoryLayout<Int32>.size)
        return SCNGeometry(sources: [source], elements: [element])
    

    class private func getIndices(count: Int) -> [Int32] 
        var indices: [Int32] = []
        indices.append(Int32(count))
        for i in 0..<count
            indices.append(Int32(i))
        
        return indices
    

不幸的是,它不适合凹多边形:

results

【问题讨论】:

【参考方案1】:

SCNShape 类代表您创建合适的三角测量。

【讨论】:

以上是关于如何从 SCNVector3 在 SceneKit 中生成凹面或凸面多边形平面的主要内容,如果未能解决你的问题,请参考以下文章

如何在给定 scnvector3 点数组的情况下创建倾斜平面

如何确保 SceneKit 相机始终指向特定位置

在 SceneKit 中缩放 SCNNode

在两点之间绘制 SceneKit 对象

使用 SceneKit 在两点之间绘制一条线

SceneKit 相机没有移动到正确的位置