(x1, y1, x2, y2)
| 4 | { |
| 5 | // Helper: create a mock line with x1,y1,x2,y2 |
| 6 | function makeLine(x1, y1, x2, y2) |
| 7 | { |
| 8 | return { x1: x1, y1: y1, x2: x2, y2: y2 }; |
| 9 | } |
| 10 | |
| 11 | // Helper: create a mock triangle with an axis-aligned right triangle |
| 12 | // vertices: (0,0), (100,0), (0,100) |
no outgoing calls
no test coverage detected
searching dependent graphs…