Beispiel #1
0
 public MapSimulation(Map map)
 {
     this.projCoordList = new List<Coordinates.Coordinate>();
     this.delaunayTr = new MOBMAP.Triangulation.Delaunay();
     this.map = map;
 }
Beispiel #2
0
 public MapView(Map map)
 {
     this.map = map;
     this.viewport = new Viewport();
 }
Beispiel #3
0
 public MapDraw(Map map)
 {
     this.map = map;
     this.triangulation = map.parentForm.delaunayTriangulation;
 }
Beispiel #4
0
 public MapUserControl(Map map)
 {
     this.map = map;
 }