Detector.Motion.Target.Target C# (CSharp) Method

Target() public method

Set the infomation for the target
public Target ( int x, int y, int size_x, int size_y ) : System
x int Postion X the target starts
y int Postion Y the target starts
size_x int The width of the target
size_y int The length of the target
return System
        public Target(int x, int y, int size_x, int size_y)
        {
            this._x = x;
            this._y = y;
            this._size_x = size_x;
            this._size_y = size_y;
        }