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 43: | Line 43: | ||
// Create three arcs surrounding the intersection area | // Create three arcs surrounding the intersection area | ||
var c1 = brd.create('arc', [p1, i2, i1], {visible:true, strokeWidth:5}); | var c1 = brd.create('arc', [p1, i2, i1], {visible:true, strokeWidth:5}); | ||
− | var c2 = brd.create('arc', [p3, i1, i3], {visible:true}); | + | var c2 = brd.create('arc', [p3, i1, i3], {visible:true, strokeWidth:5}); |
− | + | var c3 = brd.create('arc', [p5, i3, i2], {visible:true, strokeWidth:5}); | |
/* | /* |