private void DrawVector(MyVector fromPoint, MyVector toPoint, Color color, int lineWidth)
 {
     _graphics.DrawLine(new Pen(color, lineWidth), fromPoint.ToPoint(), toPoint.ToPoint());
 }