为什么在使用 ROTATION_VECTOR 传感器之前克隆 Android 传感器值?
我注意到在一些使用旋转矢量传感器的教程中,在 getRotationMatrix 中使用 mag 和 accel 值之前会对其进行克隆。
例如,这里问题中的代码: 在 Android 2.1 中使用 getRotationMatrix 和 getOrientation
但是,getRotationMatrix 不会t 改变 mag 和 accel 向量。那么克隆它们有什么意义呢?谢谢
I've noticed that in several tutorials for using the rotation vector sensor, the mag and accel values are cloned prior to using them in getRotationMatrix.
For example, the code in the question here:
Using getRotationMatrix and getOrientation in Android 2.1
However, getRotationMatrix doesn't change the mag and accel vectors. Therefore what is the point of cloning them? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为他们这样做是因为 onSensorChange 可以更改它们的值(它使用相同的变量),所以他们首先复制值。
I think they make that because onSensorChange can change their values (it uses the same variables), so they copy the values first.