perpendicular method

Line perpendicular(
  1. Coord point
)

Perpendicular line passing through point.

Implementation

Line perpendicular(Coord point) =>
    Line.fromSlopePoint(slope.perpendicular, point);