LineSegment constructor

LineSegment(
  1. Mappoint start,
  2. Mappoint end
)

Ctor with given start and end point

@param start start point @param end end point

Implementation

LineSegment(this.start, this.end);