Core2D.Math.Rect2.Rect2 C# (CSharp) Méthode

Rect2() public méthode

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
Résultat Core2D.Shapes
        public Rect2(double x, double y, double width, double height)
        {
            this.X = x;
            this.Y = y;
            this.Width = width;
            this.Height = height;
        }