Skip to content

NET_SDK_IVE_RULE_BOUNDARY_T

Structure Definition

1
2
3
4
5
typedef struct
{
    unsigned int pointNum;         
    NET_SDK_IVE_POINT_T point[32]; 
} NET_SDK_IVE_RULE_BOUNDARY_T;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_RULE_BOUNDARY_T
{
    public UInt32 pointNum;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 32)]
    public NET_SDK_IVE_POINT_T[] point;
}

Function Description

Regular region structure.

Member Description

Member Type Remark
pointNum unsigned int The number of points the region contains (0 or 3 to 8).
point NET_SDK_IVE_POINT_T[32] The coordinate information of the point.
Error Code