Close
Use close()
to create a path from current point to beginning point.
Example
var ctx = node.getComponent(cc.Graphics);
ctx.moveTo(20,20);
ctx.lineTo(20,100);
ctx.lineTo(70,100);
ctx.close();
ctx.fill();
Return to Graphics Component Reference.