public Line(PointF start, PointF end) { Start = start; End = end; Vector = new Vector2F(End.X - Start.X, End.Y - Start.Y); }