Skip to content

NET_SDK_IVE_TGT_INFO_T

Structure Definition

1
2
3
4
5
6
7
8
9
typedef struct
{
    unsigned int targetId;         
    NET_SDK_IVE_POINT_T point;     
    NET_SDK_IVE_RECT_T rect;       
    unsigned int velocity;         
    unsigned int direction;        
    NET_SDK_IVE_TRAJECT_T traject; 
} NET_SDK_IVE_TGT_INFO_T;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_TGT_INFO_T
{
    public UInt32 targetId;
    public NET_SDK_IVE_POINT_T point;
    public NET_SDK_IVE_RECT_T rect;
    public UInt32 velocity;
    public UInt32 direction;
    public NET_SDK_IVE_TRAJECT_T traject;
}

Function Description

Target trajectory information.

Member Description

Member Type Remark
targetId unsigned int Target ID.
point NET_SDK_IVE_POINT_T The coordinates of the center point of the current position.
rect NET_SDK_IVE_RECT_T Target outline rectangle.
velocity unsigned int Speed.
direction unsigned int Direction.
traject NET_SDK_IVE_TRAJECT_T Trajectory.
Error Code