如何从scenekit中的方向应用SCNVector3力/脉冲?

时间:2017-08-23 22:33:08

标签: ios swift 3d scenekit arkit

在ARKit / SceneKit中,当用户点击按钮时,我想对我的节点施加一个冲动。我希望这种冲动来自当前用户的观点。这意味着节点将偏离用户的角度。由于这段代码,我能够获得当前的方向/方向:

func getUserVector() -> (SCNVector3, SCNVector3) { // (direction, position)
    if let frame = self.sceneView.session.currentFrame {
        let mat = SCNMatrix4(frame.camera.transform) // 4x4 transform matrix describing camera in world space
        let dir = SCNVector3(-1 * mat.m31, -1 * mat.m32, -1 * mat.m33) // orientation of camera in world space
        let pos = SCNVector3(mat.m41, mat.m42, mat.m43) // location of camera in world space

        return (dir, pos)
    }
    return (SCNVector3(0, 0, -1), SCNVector3(0, 0, -0.2))
}

通过https://github.com/farice/ARShooter/blob/master/ARViewer/ViewController.swift#L191

我有一个任意的SCNVector,我已经创建了。它包含有关高(Y轴),向左或向右多少以及向节点应用多少前进的信息。

我想将我的SCNVector3转换/翻译为来自相机的方向/方向。

意思是,我有

let (direction, position) = self.getUserVector()
let force = SCNVector3(x: 1.67, y: 13.83, z: -18.3)

如何应用force的位置/来源的direction

1 个答案:

答案 0 :(得分:2)

经过大量的谷歌搜索后想出来。要将脉冲向量3转换为我需要的方向,我使用了这样的东西:

let original = SCNVector3(x: 1.67, y: 13.83, z: -18.3)
let force = simd_make_float4(original.x, original.y, original.z, 0)
let rotatedForce = simd_mul(currentFrame.camera.transform, force)

let vectorForce = SCNVector3(x:rotatedForce.x, y:rotatedForce.y, z:rotatedForce.z)
node.physicsBody?.applyForce(vectorForce, asImpulse: true)