예제 #1
0
 public void DrawOn(DrawingItemsSource source, double scalar)
 {
     foreach (MapComponent component in GetComponents())
     {
         source.AddChild(new Drawable(component, scalar));
     }
 }
예제 #2
0
 public void DrawOn(DrawingItemsSource source)
 {
     source.AddChild(new Drawable(this, -1));
 }