( x0, y0, x1, y1, x2, y2 )
| 14333 | // |
| 14334 | |
| 14335 | function drawTriangle( x0, y0, x1, y1, x2, y2 ) { |
| 14336 | |
| 14337 | _context.beginPath(); |
| 14338 | _context.moveTo( x0, y0 ); |
| 14339 | _context.lineTo( x1, y1 ); |
| 14340 | _context.lineTo( x2, y2 ); |
| 14341 | _context.closePath(); |
| 14342 | |
| 14343 | } |
| 14344 | |
| 14345 | function drawQuad( x0, y0, x1, y1, x2, y2, x3, y3 ) { |
| 14346 |
no outgoing calls
no test coverage detected