(x1, y1, x2, y2, x3, y3)
| 4 | describe('Phaser.Geom.Intersects.TriangleToTriangle', function () |
| 5 | { |
| 6 | function makeTriangle (x1, y1, x2, y2, x3, y3) |
| 7 | { |
| 8 | return new Triangle(x1, y1, x2, y2, x3, y3); |
| 9 | } |
| 10 | |
| 11 | it('should return true when two identical triangles overlap', function () |
| 12 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…