Fill the intersection area of three circles: Difference between revisions

From JSXGraph Wiki
(Created page with "<jsxgraph width="600" height="600"> JXG.joinCurves = function(board, parents, attributes) { var cu1 = parents[0], cu2 = parents[1], attr =...")
 
No edit summary
Line 31: Line 31:


     var p5 = brd.create('point', [2.5, 4.5]);
     var p5 = brd.create('point', [2.5, 4.5]);
     var p6 = brd.create('point', [4.5, 0.5]);
     var p6 = brd.create('point', [0.5, 4.5]);
     var a3 = brd.create('circle', [p5,p6]);
     var a3 = brd.create('circle', [p5,p6]);



Revision as of 09:52, 15 August 2017

The underlying JavaScript code