Fill the intersection area of three circles: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 36: Line 36:


     // Create two intersection points
     // Create two intersection points
     var i1 = brd.create('intersection', [a1,a2,0], {visible:false});
     var i1 = brd.create('intersection', [a1,a2,0], {visible:true});
     var i2 = brd.create('intersection', [a1,a2,1], {visible:false});
     var i2 = brd.create('intersection', [a1,a3,0], {visible:true});
    var i3 = brd.create('intersection', [a2,a3,0], {visible:true});
 


     // Create two arcs surrounding the intersection area
     // Create two arcs surrounding the intersection area

Revision as of 09:53, 15 August 2017

The underlying JavaScript code