Exemplo n.º 1
0
 private Patch(Town town, Geom.Polygon shape)
 {
     Town  = town;
     Shape = shape;
     Id    = ++_id;
 }
Exemplo n.º 2
0
 public static Patch FromPolygon(Town town, Geom.Polygon polygon)
 {
     return(new Patch(town, polygon));
 }
Exemplo n.º 3
0
 public Building(string description, Geom.Polygon shape)
 {
     Shape       = shape;
     Description = description;
 }