You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
220 B
8 lines
220 B
3 years ago
|
//MPU6050姿态融合算法融合后四元数
|
||
|
public class MPUQuaternion {
|
||
|
public double q0 { set; get; }
|
||
|
public double q1 { set; get; }
|
||
|
public double q2 { set; get; }
|
||
|
public double q3 { set; get; }
|
||
|
}
|