VectorMath.RectangleD.RectangleD C# (CSharp) Method

RectangleD() public method

public RectangleD ( double x, double y, double width, double height )
x double
y double
width double
height double
        public RectangleD(double x, double y, double width, double height)
        {
            X = x;
            Y = y;

            Width = width;
            Height = height;

            ComputeProperties();
        }