Exemple #1
0
 public abstract void draw(MapModel map);
Exemple #2
0
 public MapModel(MapModel map)
 {
     this.Points   = new List <KeyPoint>(map.Points);
     this.Segments = new List <Segment>(map.Segments);
 }