- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有来自陀螺仪传感器的实时数据流,我想将其镜像到 SceneKit 中的一个简单对象中。
这是类声明以及我如何读取数据(主要用于上下文):
class GraphicsViewController: UIViewController {
@IBOutlet var newView: SCNView!
var device: MetaWear!
let geometry:SCNGeometry = SCNPyramid(width: 1, height: 1, length: 1)
var graphicsScene: SCNScene!
var cameraNode: SCNNode!
var pyramidNode:SCNNode
(...)
required init?(coder aDecoder: NSCoder) {
self.pyramidNode = SCNNode(geometry: geometry)
super.init(coder: aDecoder)
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated);
pyramidNode = SCNNode(geometry: geometry)
(...)
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
self.updateLabel("Restoring")
if let state = DeviceState.loadForDevice(device) {
// Initialize the device
device.deserialize(state.serializedState)
self.updateLabel("Connecting")
device.connectAndSetup().continueWith { t in
if let error = t.error {
// Sorry we couldn't connect
print("ERROR: Could not connect!")
} else {
// The result of a connectAndSetup call is a task which completes upon disconnection.
t.result!.continueWith {
state.serializedState = self.device.serialize()
state.saveToUrl(self.device.uniqueUrl)
self.updateLabel($0.error?.localizedDescription ?? "Disconnected")
}
self.updateLabel("Connected")
self.device.flashLED(color: .green, intensity: 1.0, _repeat: 3)
self.magnetoTest()
print("passed magneto test")
}
}
}
}
到目前为止一切都很好。 magnitoTest 函数如下所示:
func magnetoTest(){
mbl_mw_mag_bmm150_set_preset(device.board, MBL_MW_MAG_BMM150_PRESET_LOW_POWER);
mbl_mw_sensor_fusion_write_config(device!.board)
let gyroData = mbl_mw_mag_bmm150_get_b_field_data_signal(device.board)
mbl_mw_datasignal_subscribe(gyroData!, bridge(obj: self)) { (context, data) in
let dataSignal = data!.pointee.valueAs() as MblMwCartesianFloat
DispatchQueue.main.async{
print(dataSignal.z)
let mySelf = Unmanaged<GraphicsViewController>.fromOpaque(context!).takeUnretainedValue()
mySelf.pyramidNode.rotation = SCNVector4(x: dataSignal.x, y: dataSignal.y, z: dataSignal.z, w: Float(10.0))
mySelf.testData = SCNVector3(x: dataSignal.x, y: dataSignal.y, z: dataSignal.z)
}
}
mbl_mw_mag_bmm150_enable_b_field_sampling(device.board);
mbl_mw_mag_bmm150_start(device.board)
}
我期望 mySelf.PyramidNode.Rotation 能够工作,但事实并非如此。观察数据的变化也没有任何作用:
var testData:SCNVector3? {
willSet(newValue) {
print("About to set new data: \(newValue)")
pyramidNode.rotation = SCNVector4Make(newValue!.x, newValue!.y, newValue!.z, 0.0)
//pyramidNode.position = newValue!
print("new rotation: \(pyramidNode.rotation)")
let rotationAction = SCNAction.rotate(by: CGFloat(1.0), around: SCNVector3(3,5,0), duration: 2.0)
pyramidNode.runAction(rotationAction)
cameraNode.runAction(rotationAction)
cameraNode.rotation = SCNVector4Make(newValue!.x, newValue!.y, newValue!.z, 0.0)
cameraNode.position = newValue!
}
didSet(val) {
print("data was set! \(val)")
}
}
这样做的结果是一无所获。没有错误,没有警告,金字塔节点也没有变化。这是顶部的打印输出:
2019-02-18 01:04:23.446607+0100 StarterProject[4001:2128327] [DYMTLInitPlatform] platform initialization successful 2019-02-18
01:04:23.726821+0100 StarterProject[4001:2128243] [CoreBluetooth] API MISUSE: <CBCentralManager: 0x283ad59c0> has no restore identifier but the delegate implements the centralManager:willRestoreState: method. Restoring will not be supported
MainTableViewCtrl says hello to 0 devices
AppDelegate says hello
ScanTableViewCtrl says hello
MainTableViewCtrl says hello to 1 devices
2019-02-18 01:04:29.952980+0100 StarterProject[4001:2128243] Metal GPU Frame Capture Enabled 2019-02-18 01:04:29.956667+0100 StarterProject[4001:2128243] Metal API Validation Enabled
graphics says hello
Restoring
Connecting
Connected
passed magneto test
About to set new data: Optional(__C.SCNVector3(x: 25.875, y: 74.4375, z: 5.1875))
new rotation: SCNVector4(x: 25.875, y: 74.4375, z: 5.1875, w: 0.0)
data was set! nil
About to set new data: Optional(__C.SCNVector3(x: 25.5, y: 75.875, z: 5.9375))
new rotation: SCNVector4(x: 25.5, y: 75.875, z: 5.9375, w: 0.0)
data was set! Optional(__C.SCNVector3(x: 25.875, y: 74.4375, z: 5.1875))
About to set new data: Optional(__C.SCNVector3(x: 26.25, y: 77.0, z: 4.8125))
new rotation: SCNVector4(x: 26.25, y: 77.0, z: 4.8125, w: 0.0)
data was set! Optional(__C.SCNVector3(x: 25.5, y: 75.875, z: 5.9375))
所有这些似乎都有效,但它不会影响我的场景中金字塔的变化。正如您所知,我尝试以多种方式移动相机和金字塔(比所示的更多)。
总之,我从传感器(快速)获取实时数据。我想镜像 SceneKit 场景中对象中传感器的方向。我获得了数据并且拥有了对象,但我不知道如何将数据应用到对象的旋转。
我根本不明白为什么我对金字塔(或相机)旋转的更改不会改变应用程序中的任何内容。即使是硬编码的值也无法改变金字塔的 View 。
希望您能提供帮助,非常感谢任何提示和提示!
最佳答案
我是新手,我将几何体添加到场景中,而不是节点本身。
抱歉浪费了您的时间。
关于ios - 如何在SceneKit中简单地旋转SCNNode?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54739242/
...沮丧。我希望我的游戏仅在横向模式下运行。我已将适当的键/值添加到 Info.plist 文件中,以强制设备方向在启动时正确。 我现在正在尝试旋转 OpenGL 坐标空间以匹配设备的坐标空间。我正
我如何创建一个旋转矩阵,将 X 旋转 a,Y 旋转 b,Z 旋转 c? 我需要公式,除非您使用的是 ardor3d api 的函数/方法。 矩阵是这样设置的 xx, xy, xz, yx, yy, y
假设我有一个包含 3 个 vector 的类(一个用于位置,一个用于缩放,一个用于旋转)我可以使用它们生成一个变换矩阵,该矩阵表示对象在 3D 空间中的位置、旋转和大小。然后我添加对象之间的父/子关系
所以我只是在玩一个小的 javascript 游戏,构建一个 pacman 游戏。你可以在这里看到它:http://codepen.io/acha5066/pen/rOyaPW 不过我对旋转有疑问。你
在我的应用程序中,我有一个 MKMapView,其中显示了多个注释。 map 根据设备的航向旋转。要旋转 map ,请执行以下语句(由方法 locationManager 调用:didUpdateHe
使用此 jquery 插件时:http://code.google.com/p/jqueryrotate/wiki/Documentation我将图像旋转 90 度,无论哪个方向,它们最终都会变得模糊
我有以下代码:CSS: .wrapper { margin:80px auto; width:300px; border:none; } .square { widt
本篇介绍Manim中的两个旋转类的动画,名称差不多,分别是Rotate和Rotating。 Rotate类主要用于对图形对象进行指定角度、围绕特定点的精确旋转,适用于几何图形演示、物理模拟和机械运动
我只想通过小部件的轴移动图像并围绕小部件的中心旋转(就像任何数字绘画软件中的 Canvas ),但它围绕其左顶点旋转...... QPainter p(this); QTransform trans;
我需要先旋转图像,然后再将其加载到 Canvas 中。据我所知,我无法使用 canvas.rotate() 旋转它,因为它会旋转整个场景。 有没有好的JS方法来旋转图片? [不依赖于浏览器的方式] 最
我需要知道我的 Android 设备屏幕何时从一个横向旋转到另一个横向(rotation_90 到 rotation_270)。在我的 Android 服务中,我重新实现了 onConfigurati
**摘要:**本篇文章主要讲解Python调用OpenCV实现图像位移操作、旋转和翻转效果,包括四部分知识:图像缩放、图像旋转、图像翻转、图像平移。 本文分享自华为云社区《[Python图像处理] 六
我只是在玩MTKView中的模板设置;并且,我一直在尝试了解以下内容: 相机的默认位置。 使用MDLMesh和MTKMesh创建基元时的默认位置。 为什么轮换还涉及翻译。 相关代码: matrix_f
我正在尝试使用包 dendexend 创建一个树状图。它创建了非常好的 gg 树状图,但不幸的是,当你把它变成一个“圆圈”时,标签跟不上。我将在下面提供一个示例。 我的距离对象在这里:http://s
我想将一个完整的 ggplot 对象旋转 90°。 我不想使用 coord_flip因为这似乎会干扰 scale="free"和 space="free"使用刻面时。 例如: qplot(as.fac
我目前可以通过首先平移到轴心点然后执行旋转最后平移回原点来围绕轴心点旋转。在我的例子中,我很容易为肩膀做到这一点。但是,我不知道如何为前臂添加绕肘部的旋转。 我已经尝试了以下围绕肘部旋转的前臂: 平移
我想使用此功能旋转然后停止在特定点或角度。现在该元素只是旋转而不停止。代码如下: $(function() { var $elie = $("#bkgimg");
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
我正在尝试创建一个非常简单的关键帧动画,其中图形通过给定的中点从一个角度旋转到另一个角度。 (目的是能够通过大于 180 度的 OBTUSE 弧角来制作旋转动画,而不是让动画“作弊”并走最短路线,即通
我需要旋转 NSView 实例的框架,使其宽度变为其高度,其高度变为其宽度。该 View 包含一个字符串,并且该字符串也被旋转,这一点很重要。 我查看了 NSView 的 setFrameRotati
我是一名优秀的程序员,十分优秀!