(a, b Point)
| 148 | } |
| 149 | |
| 150 | func isIncreasing(a, b Point) bool { |
| 151 | if b.X < a.X { |
| 152 | return false |
| 153 | } else if a.X == b.X && b.Y < a.Y { |
| 154 | return false |
| 155 | } |
| 156 | return true |
| 157 | } |
| 158 | |
| 159 | func TestIntersectionLineLineBentleyOttmann(t *testing.T) { |
| 160 | var tts = []struct { |
no outgoing calls
no test coverage detected