如何在我有两个矢量点之间添加SCNBox?

时间:2017-07-07 14:23:13

标签: ios sprite-kit ios11 arkit

我可以添加一个方框,给它一个我的第一点的位置,但它没有覆盖我的第二点,看到我的输出的附加图像。

以下是我正在使用的代码:

    boxLine = SCNBox(width: 0.01, height: CGFloat(distance+distance), length: 0.01, chamferRadius: 0.01)
    boxLine.firstMaterial!.diffuse.contents = UIColor.red
    boxLineNode = SCNNode(geometry: boxLine)
    boxLineNode.position = SCNVector3Make(start.x, start.y, start.z)
    sceneView.scene.rootNode.addChildNode(boxLineNode)

enter image description here

0 个答案:

没有答案