swift - 如何在 SceneKit 中绘制箭头?

标签 swift scenekit arkit

我正在尝试使用 SCNGeometrySource、SCNGeometryElement 绘制箭头。但无法像下图那样绘制精确的箭头。

是否可以像下图那样绘制带有头部或箭头的简单箭头线。?

我试过下面的代码,但行不通。

let indices: [Int32] = [0, 1,1]
        let source = SCNGeometrySource(vertices: [vector1, vector2])
        let element = SCNGeometryElement(indices: indices, primitiveType: .triangles)

enter image description here

最佳答案

如果箭头将始终面向相机,如您所附图像中所示,您可以使用 SCNPlane 并将箭头图像用作纹理。

如果它不会始终面向相机,您可能需要给它一些厚度。如果正确完成,我不同意其他答案是比您尝试的方法“更好”的解决方案。

Obj C 代码(编辑:在下面添加了 swift 版本)

int vertcount = 48;
float verts[] = { -14.923, 11.824, 25.000, -64.923, 0.000, 0.000, -14.923, -11.824, 25.000, 46.077, -5.812, 16.800, 46.077, -5.812, -16.800, 46.077, 5.812, -16.800, 46.077, 5.812, 16.800, -14.923, -11.824, -25.000, -14.923, 11.824, -25.000, -14.923, 4.974, -9.969, -14.923, 4.974, 9.969, -14.923, -4.974, 9.969, -14.923, -4.974, -9.969 };

int facecount = 13;
int faces[] = {  3, 4, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 0, 1, 2, 3, 4, 5, 6, 7, 1, 8, 8, 1, 0, 2, 1, 7, 9, 8, 0, 10, 10, 0, 2, 11, 11, 2, 7, 12, 12, 7, 8, 9, 9, 5, 4, 12, 10, 6, 5, 9, 11, 3, 6, 10, 12, 4, 3, 11};

NSData *vertsData = [NSData dataWithBytes:&verts length:sizeof(verts)];

SCNGeometrySource *vertexSource = [SCNGeometrySource geometrySourceWithData: vertsData 
semantic:SCNGeometrySourceSemanticVertex
vectorCount:vertcount
floatComponents:YES
componentsPerVector:3
bytesPerComponent:sizeof(float)
dataOffset:0
dataStride:sizeof(float)*3];

int polyIndexCount = 61;
NSData *indexPolyData = [NSData dataWithBytes:faces length:sizeof(int) * polyIndexCount];
SCNGeometryElement *element1 = [SCNGeometryElement geometryElementWithData:indexPolyData
primitiveType:SCNGeometryPrimitiveTypePolygon
primitiveCount:facecount
bytesPerIndex:sizeof(int)];

SCNGeometry *geometry1 = [SCNGeometry geometryWithSources:@[ vertexSource ] elements:@[ element1]];

//Assign the SCNGeometry to a SCNNode, for example:
//SCNNode *aNode = [[SCNNode alloc] init];
//aNode.geometry = geometry1;

注意它使用多边形基元类型。

vert 列表可以通过舍入 float 来稍微清理一下。

这将创建以下 3D 箭头(顶点和边不可见):

enter image description here

enter image description here

编辑:SWIFT 版本:

let vertcount = 48;
        let verts: [Float] = [ -1.4923, 1.1824, 2.5000, -6.4923, 0.000, 0.000, -1.4923, -1.1824, 2.5000, 4.6077, -0.5812, 1.6800, 4.6077, -0.5812, -1.6800, 4.6077, 0.5812, -1.6800, 4.6077, 0.5812, 1.6800, -1.4923, -1.1824, -2.5000, -1.4923, 1.1824, -2.5000, -1.4923, 0.4974, -0.9969, -1.4923, 0.4974, 0.9969, -1.4923, -0.4974, 0.9969, -1.4923, -0.4974, -0.9969 ];

        let facecount = 13;
        let faces: [CInt] = [  3, 4, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 0, 1, 2, 3, 4, 5, 6, 7, 1, 8, 8, 1, 0, 2, 1, 7, 9, 8, 0, 10, 10, 0, 2, 11, 11, 2, 7, 12, 12, 7, 8, 9, 9, 5, 4, 12, 10, 6, 5, 9, 11, 3, 6, 10, 12, 4, 3, 11 ];

        let vertsData  = NSData(
            bytes: verts,
            length: MemoryLayout<Float>.size * vertcount
        )

        let vertexSource = SCNGeometrySource(data: vertsData as Data,
                                             semantic: .vertex,
                                             vectorCount: vertcount,
                                             usesFloatComponents: true,
                                             componentsPerVector: 3,
                                             bytesPerComponent: MemoryLayout<Float>.size,
                                             dataOffset: 0,
                                             dataStride: MemoryLayout<Float>.size * 3)

        let polyIndexCount = 61;
        let indexPolyData  = NSData( bytes: faces, length: MemoryLayout<CInt>.size * polyIndexCount )

        let element1 = SCNGeometryElement(data: indexPolyData as Data,
                                          primitiveType: .polygon,
                                          primitiveCount: facecount,
                                          bytesPerIndex: MemoryLayout<CInt>.size)

        let geometry1 = SCNGeometry(sources: [vertexSource], elements: [element1])

        let material1 = geometry1.firstMaterial!

        material1.diffuse.contents = UIColor(red: 0.14, green: 0.82, blue: 0.95, alpha: 1.0)
        material1.lightingModel = .lambert
        material1.transparency = 1.00
        material1.transparencyMode = .dualLayer
        material1.fresnelExponent = 1.00
        material1.reflective.contents = UIColor(white:0.00, alpha:1.0)
        material1.specular.contents = UIColor(white:0.00, alpha:1.0)
        material1.shininess = 1.00

        //Assign the SCNGeometry to a SCNNode, for example:
        let aNode = SCNNode()
        aNode.geometry = geometry1
        //aNode.scale = SCNVector3(0.1, 0.1, 0.1)
        scene.rootNode.addChildNode(aNode)

在 Swift 代码之上进行了测试以仔细检查它是否有效:

enter image description here

如果您需要它更小,请取消注释 .scale 行并尝试不同的值以查看您想要它有多小。例如,如果您最终希望它的比例为 0.06,我建议通过将其中的值乘以 0.06 来重新生成垂直列表,然后删除比例线。

关于swift - 如何在 SceneKit 中绘制箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47191068/

相关文章:

ios - 未找到用于将 Swift 转换为 kotlin 的 Swiftkotlin 命令行

ios - 当绘制到OpenGL上下文中时,为什么SCNRenderer如此不同步/不协调?

ios - 在不阻塞主线程的情况下向 SceneKit SCNScene 添加多个节点

ios - 如何以编程方式将 .scn 从 Documents 文件夹转换为 SCNNode?

swift - Reality Composer 默认 anchor

swift - macOS Big Sur 新的工具栏按钮样式

ios - 如何使用 swift 3 为核心数据生成虚拟数据

string - 无法将类型 'Int' 的值转换为预期的参数类型 'Index'(又名 'String.CharacterView.Index')

ios - 如何从 Objective-C 在 Swift 中复制 vector_float3?

ios - 场景套件渲染器访问错误导致崩溃