iOS陀螺仪 参数意义
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS陀螺仪 参数意义相关的知识,希望对你有一定的参考价值。
self.mManager = [[CMMotionManager alloc]init];
self.mManager.deviceMotionUpdateInterval = 0.5;
if (self.mManager.gyroAvailable) {
[self.mManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMDeviceMotion * _Nullable motion, NSError * _Nullable error) {
NSLog(@"RotationRate X:%.2lf Y:%.2lf Z:%.2lf ",motion.userAcceleration.x,motion.userAcceleration.y,motion.userAcceleration.z);
}];
}
x轴 头 靠近 负数 Y参数
x轴 头 远离 正数
y轴 左侧 高 正数 X参数
y轴 右侧 高 负数
以上是关于iOS陀螺仪 参数意义的主要内容,如果未能解决你的问题,请参考以下文章