VectorMath.RectangleD.RectangleD C# (CSharp) 메소드

RectangleD() 공개 메소드

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();
        }