innerAngleWith method

Rad innerAngleWith(
  1. Line other
)

Get the inner angle between this line and another line

result is in radian

Implementation

Rad innerAngleWith(Line other) {
  final angle = getAngleWith(other);
  return min(angle, pi - angle);
}