outerAngleWith method

Rad outerAngleWith(
  1. Line other
)

Get the outer angle between this line and another line

result is in radian

Implementation

Rad outerAngleWith(Line other) {
  final angle = innerAngleWith(other);
  return pi - angle;
}