【发布时间】:2016-11-14 03:29:49
【问题描述】:
我正在使用 iOS SceneKit 框架构建 360 度视频查看器。
我想使用UIPanGestureRecognizer 来控制相机的方向。
SCNNodes 有几个属性可以用来指定它们的旋转:rotation(旋转矩阵)、orientation(四元数)、eulerAngles(每轴角度)。
我读过的所有内容都说要避免使用欧拉角以避免gimbal lock。
我想使用四元数有几个原因,我不会在这里讨论。
我无法让它正常工作。相机控制几乎是我想要的,但有问题。尽管我试图只影响 X 和 Y 轴,但看起来相机正在围绕 Z 轴旋转。
我认为这个问题与我的四元数乘法逻辑有关。多年来我没有做过任何与四元数相关的事情:(我的平移手势处理程序在这里:
func didPan(recognizer: UIPanGestureRecognizer)
{
switch recognizer.state
{
case .Began:
self.previousPanTranslation = .zero
case .Changed:
guard let previous = self.previousPanTranslation else
{
assertionFailure("Attempt to unwrap previous pan translation failed.")
return
}
// Calculate how much translation occurred between this step and the previous step
let translation = recognizer.translationInView(recognizer.view)
let translationDelta = CGPoint(x: translation.x - previous.x, y: translation.y - previous.y)
// Use the pan translation along the x axis to adjust the camera's rotation about the y axis.
let yScalar = Float(translationDelta.x / self.view.bounds.size.width)
let yRadians = yScalar * self.dynamicType.MaxPanGestureRotation
// Use the pan translation along the y axis to adjust the camera's rotation about the x axis.
let xScalar = Float(translationDelta.y / self.view.bounds.size.height)
let xRadians = xScalar * self.dynamicType.MaxPanGestureRotation
// Use the radian values to construct quaternions
let x = GLKQuaternionMakeWithAngleAndAxis(xRadians, 1, 0, 0)
let y = GLKQuaternionMakeWithAngleAndAxis(yRadians, 0, 1, 0)
let z = GLKQuaternionMakeWithAngleAndAxis(0, 0, 0, 1)
let combination = GLKQuaternionMultiply(z, GLKQuaternionMultiply(y, x))
// Multiply the quaternions to obtain an updated orientation
let scnOrientation = self.cameraNode.orientation
let glkOrientation = GLKQuaternionMake(scnOrientation.x, scnOrientation.y, scnOrientation.z, scnOrientation.w)
let q = GLKQuaternionMultiply(combination, glkOrientation)
// And finally set the current orientation to the updated orientation
self.cameraNode.orientation = SCNQuaternion(x: q.x, y: q.y, z: q.z, w: q.w)
self.previousPanTranslation = translation
case .Ended, .Cancelled, .Failed:
self.previousPanTranslation = nil
case .Possible:
break
}
}
我的代码在这里开源:https://github.com/alfiehanssen/360Player/
特别查看pan-gesture 分支:
https://github.com/alfiehanssen/360Player/tree/pan-gesture
如果您将代码拉下来,我相信您将不得不在设备而不是模拟器上运行它。
我在这里发布了一个演示该错误的视频(请原谅视频文件的低分辨率): https://vimeo.com/174346191
提前感谢您的帮助!
【问题讨论】:
标签: ios swift scenekit quaternions