Exemplo n.º 1
0
 public static Rectangle MakeEmpty()
 {
     Rectangle ret = new Rectangle();
     ret.Name = "Rectangle";
     ret.Width = 0.0;
     ret.Height = 0.0;
     return ret;
 }
Exemplo n.º 2
0
 public static Rectangle Make(string name, double width, double height)
 {
     Rectangle ret = new Rectangle();
     ret.Name = name;
     ret.Width = width;
     ret.Height = height;
     return ret;
 }