houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5
6 /**
7  * @author 260611
8  * @description Mini雷达角度补偿配置, 对应配置项 NET_EM_CFG_MINIRADAR_COMP_INFO
9  * @date 2022/08/04 10:13:30
10  */
11 public class NET_CFG_MINIRADAR_COMP_INFO extends NetSDKLib.SdkStructure {
12     /**
13      * 结构体大小
14      */
15     public int dwSize;
16     /**
17      * 横滚角,单位度,扩大100倍
18      */
19     public int nRollAngle;
20     /**
21      * 俯仰角,单位度,扩大100倍
22      */
23     public int nPitchAngle;
24     /**
25      * 横滚角,单位度,扩大100倍
26      */
27     public int nYawAngle;
28
29     public NET_CFG_MINIRADAR_COMP_INFO() {
30         this.dwSize = this.size();
31     }
32
33 }