( x0, y0, x1, y1, x2, y2 )
| 15803 | // |
| 15804 | |
| 15805 | function drawTriangle( x0, y0, x1, y1, x2, y2 ) { |
| 15806 | |
| 15807 | _context.beginPath(); |
| 15808 | _context.moveTo( x0, y0 ); |
| 15809 | _context.lineTo( x1, y1 ); |
| 15810 | _context.lineTo( x2, y2 ); |
| 15811 | _context.closePath(); |
| 15812 | |
| 15813 | } |
| 15814 | |
| 15815 | function drawQuad( x0, y0, x1, y1, x2, y2, x3, y3 ) { |
| 15816 |
no outgoing calls
no test coverage detected