Beispiel #1
0
 public override void draw(Graphics graphics, GISView view)
 {
     Point[] points = GISTools.GetScreenPoints(Vertexes, view);
     graphics.FillPolygon(new SolidBrush(Color.Yellow), points);
     graphics.DrawPolygon(new Pen(Color.White, 2), points);
 }
Beispiel #2
0
 public override void draw(Graphics graphics, GISView view)
 {
     Point[] points = GISTools.GetScreenPoints(Vertexes, view);
     graphics.DrawLines(new Pen(Color.Red, 2), points);
 }