Intersection of circles: Difference between revisions

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


var c1 = board.create('circle', [[-1, 2], 3]);
var c1 = board.create('circle', [[-1, 2], 3]);
var c2 = board.create('circle', [[1, 2], 3]);
var c2 = board.create('circle', [[1, -2], 3]);


var clip_path = board.create('curve', [[], []], {strokeWidth: 2, fillColor: 'yellow', fillOpacity: 0.3});
var clip_path = board.create('curve', [[], []], {strokeWidth: 2, fillColor: 'yellow', fillOpacity: 0.3});

Revision as of 09:38, 28 March 2020

The underlying JavaScript code