Core2D.Math.Rect2.Rect2 C# (CSharp) 메소드

Rect2() 공개 메소드

Initializes a new Rect2 instance.
public Rect2 ( double x, double y, double width, double height ) : Core2D.Shapes
x double
y double
width double
height double
리턴 Core2D.Shapes
        public Rect2(double x, double y, double width, double height)
        {
            this.X = x;
            this.Y = y;
            this.Width = width;
            this.Height = height;
        }