提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
|
|
7 |
/** |
|
8 |
* @author 291189 |
|
9 |
* @description 3D姿态 |
|
10 |
* @origin autoTool |
|
11 |
* @date 2023/02/14 20:02:01 |
|
12 |
*/ |
|
13 |
public class NET_3DFLOAT_POSTURE extends NetSDKLib.SdkStructure { |
|
14 |
/** |
|
15 |
偏航角,单位度 |
|
16 |
*/ |
|
17 |
public float fYaw; |
|
18 |
/** |
|
19 |
俯仰角,单位度 |
|
20 |
*/ |
|
21 |
public float fPitch; |
|
22 |
/** |
|
23 |
翻滚角,单位度 |
|
24 |
*/ |
|
25 |
public float fRool; |
|
26 |
/** |
|
27 |
保留字节 |
|
28 |
*/ |
|
29 |
public byte[] szReserved=new byte[28]; |
|
30 |
|
|
31 |
public NET_3DFLOAT_POSTURE(){ |
|
32 |
} |
|
33 |
|
|
34 |
@Override |
|
35 |
public String toString() { |
|
36 |
return "{" + |
|
37 |
"fYaw=" + fYaw + |
|
38 |
", fPitch=" + fPitch + |
|
39 |
", fRool=" + fRool + |
|
40 |
'}'; |
|
41 |
} |
|
42 |
} |