Beispiel #1
0
 public void DrawLine(ColorD color, double x1, double y1, double x2, double y2)
 {
     Draws.FillColor(color.ToColor());
     Draws.Line(x1, y1, x2, y2);
 }