houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3
4 import com.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  二维空间点 
9 * @origin autoTool
10 * @date 2023/05/29 11:40:40
11 */
12 public class DH_POLY_POINTS extends NetSDKLib.SdkStructure {
13 /** 
14 顶点数
15 */
16 public            int                    nPointNum;
17 /** 
18 顶点信息
19 */
20 public            DH_POINT[]                    stuPoints=new DH_POINT[20];
21
22 public DH_POLY_POINTS(){
23         for(int i=0;i<stuPoints.length;i++){
24             stuPoints[i]=new DH_POINT();
25             }
26 }
27 }