Category5.Rectangle2D.Rectangle2D C# (CSharp) 메소드

Rectangle2D() 공개 메소드

public Rectangle2D ( float x, float y, float width, float height ) : System
x float
y float
width float
height float
리턴 System
        public Rectangle2D(float x, float y, float width, float height)
        {
            this.X = x;
            this.Y = y;
            this.Width = width;
            this.Height = height;
        }