コード例 #1
0
ファイル: DrawM.cs プロジェクト: miphas/SmartCarB
 public abstract void draw(MapModel map);
コード例 #2
0
ファイル: MapModel.cs プロジェクト: miphas/SmartCarB
 public MapModel(MapModel map)
 {
     this.Points   = new List <KeyPoint>(map.Points);
     this.Segments = new List <Segment>(map.Segments);
 }