2
A
回答
3
下面是一個簡單的例子:
using MonoTouch.CoreMotion;
//..
CMMotionManager motionManager;
private void StartGyro()
{
motionManager = new CMMotionManager();
motionManager.GyroUpdateInterval = 1/10;
if (motionManager.GyroAvailable)
{
motionManager.StartGyroUpdates(NSOperationQueue.MainQueue, GyroData_Received);
}
}
private void GyroData_Received(CMGyroData gyroData, NSError error)
{
Console.WriteLine("rotation rate x: {0}, y: {1}, z: {2}",
gyroData.RotationRate.x, gyroData.RotationRate.y, gyroData.RotationRate.z);
}
每個CMGyroData實例的RotationRate屬性的三個值是每秒旋轉角度的每個軸上的量,以弧度表示。
相關問題
- 1. 陀螺儀Android
- 2. 陀螺儀使用Cocos2d-x
- 3. iOS的陀螺儀,使
- 4. iPhone/iPad陀螺儀
- 5. iOS陀螺儀API
- 6. 鈦中的陀螺儀值
- 7. 沒有陀螺儀的VR
- 8. iPhone傾斜角度 - 使用陀螺儀?
- 9. 在Unity3d中使用Android陀螺儀
- 10. 如何在Android中使用陀螺儀
- 11. 陀螺儀太敏感
- 12. 陀螺儀驅動sphero
- 13. Android陀螺儀示例?
- 14. Android Studio陀螺儀示例?
- 15. iOS - 陀螺儀樣本
- 16. Android-陀螺儀傳感器
- 17. iPhone 4沒有陀螺儀?
- 18. Unity3d陀螺儀環顧
- 19. android detect是陀螺儀可用
- 20. 用陀螺儀導航視圖 - iOS
- 21. 統一陀螺儀的默認位置
- 22. 包含在getOrientation中的陀螺儀?
- 23. 手機上的陀螺儀漂移
- 24. 陀螺儀傳感器的結果Android
- 25. CMMotionManager和iPhone 4上的陀螺儀
- 26. 帶有陀螺儀和指南針的Android平板電腦
- 27. 陀螺儀更新核心運動
- 28. iPad有加速計或陀螺儀嗎?
- 29. 陀螺儀不顯示任何漂移
- 30. Android陀螺儀詩歌加速度計
謝謝!我知道這是直截了當的事情,但不能把這些東西放在一起。 – robertweis