Difference between revisions of "Fill the intersection area of three circles"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
Line 36: | Line 36: | ||
// Create two intersection points | // Create two intersection points | ||
− | var i1 = brd.create('intersection', [a1,a2,0], {visible: | + | var i1 = brd.create('intersection', [a1,a2,0], {visible:true}); |
− | var i2 = brd.create('intersection', [a1,a2, | + | 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 |