( x0, y0, x1, y1, x2, y2 )
| 9851 | // |
| 9852 | |
| 9853 | function drawTriangle( x0, y0, x1, y1, x2, y2 ) { |
| 9854 | |
| 9855 | _context.beginPath(); |
| 9856 | _context.moveTo( x0, y0 ); |
| 9857 | _context.lineTo( x1, y1 ); |
| 9858 | _context.lineTo( x2, y2 ); |
| 9859 | _context.lineTo( x0, y0 ); |
| 9860 | _context.closePath(); |
| 9861 | |
| 9862 | } |
| 9863 | |
| 9864 | function drawQuad( x0, y0, x1, y1, x2, y2, x3, y3 ) { |
| 9865 |
no outgoing calls
no test coverage detected