Line.fromSlopePoint constructor

Line.fromSlopePoint(
  1. Angle slope,
  2. Coord point
)

Implementation

Line.fromSlopePoint(this.slope, Coord point)
    : bias = ((point.$2 * slope.base) - (point.$1 * slope.front));