Intersection of circles: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
 
Line 7: Line 7:
var c1 = board.create('circle', [[-1, 1.5], 3]);
var c1 = board.create('circle', [[-1, 1.5], 3]);
var c2 = board.create('circle', [[1, -1.5], 3]);
var c2 = board.create('circle', [[1, -1.5], 3]);
 
var clip = board.create('curveintersection', [c1, c2],  
var clip_path = board.create('curve', [[], []], {strokeWidth: 2, fillColor: 'yellow', fillOpacity: 0.3});
          { strokeWidth: 2, fillColor: 'yellow', fillOpacity: 0.3 });
clip_path.updateDataArray = function() {
    var a = JXG.Math.Clip.intersection(c1, c2, this.board);
 
    this.dataX = a[0];
    this.dataY = a[1];
};
board.update();


</jsxgraph>
</jsxgraph>
Line 29: Line 22:
var c1 = board.create('circle', [[-1, 1.5], 3]);
var c1 = board.create('circle', [[-1, 1.5], 3]);
var c2 = board.create('circle', [[1, -1.5], 3]);
var c2 = board.create('circle', [[1, -1.5], 3]);
 
var clip = board.create('curveintersection', [c1, c2],  
var clip_path = board.create('curve', [[], []], {strokeWidth: 2, fillColor: 'yellow', fillOpacity: 0.3});
          { strokeWidth: 2, fillColor: 'yellow', fillOpacity: 0.3 });
clip_path.updateDataArray = function() {
    var a = JXG.Math.Clip.intersection(c1, c2, this.board);
 
    this.dataX = a[0];
    this.dataY = a[1];
};
board.update();
</source>
</source>


[[Category:Examples]]
[[Category:Examples]]
[[Category:Geometry]]
[[Category:Geometry]]

Latest revision as of 18:46, 18 July 2024

The underlying JavaScript code

var board = JXG.JSXGraph.initBoard('jxgbox', {
    axis:true,
    boundingbox:[-5, 5, 5, -5]
});

var c1 = board.create('circle', [[-1, 1.5], 3]);
var c2 = board.create('circle', [[1, -1.5], 3]);
var clip = board.create('curveintersection', [c1, c2], 
          { strokeWidth: 2, fillColor: 'yellow', fillOpacity: 0.3 });