( x0, y0, x1, y1, x2, y2 )
| 16176 | // |
| 16177 | |
| 16178 | function drawTriangle( x0, y0, x1, y1, x2, y2 ) { |
| 16179 | |
| 16180 | _context.beginPath(); |
| 16181 | _context.moveTo( x0, y0 ); |
| 16182 | _context.lineTo( x1, y1 ); |
| 16183 | _context.lineTo( x2, y2 ); |
| 16184 | _context.closePath(); |
| 16185 | |
| 16186 | } |
| 16187 | |
| 16188 | function drawQuad( x0, y0, x1, y1, x2, y2, x3, y3 ) { |
| 16189 |
no outgoing calls
no test coverage detected