MCPcopy Index your code
hub / github.com/stemkoski/stemkoski.github.com / drawTriangle

Function drawTriangle

Three.js/js/Three59dev.js:15805–15813  ·  view source on GitHub ↗
( x0, y0, x1, y1, x2, y2 )

Source from the content-addressed store, hash-verified

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

Callers 2

renderFace3Function · 0.70
renderFace4Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected