Get the inner angle between this line and another line
result is in radian
Rad innerAngleWith(Line other) { final angle = getAngleWith(other); return min(angle, pi - angle); }