Circle inversion: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
The point <math>P'</math> is the result of a circle inversion of <math>P</math> on circle <math>c</math> (black circle line). | |||
<jsxgraph width="600" height="600"> | <jsxgraph width="600" height="600"> | ||
brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-5,5,5,-5]}); | var brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-5,5,5,-5]}); | ||
var m = brd.create('point',[0.5,0.3]); | var m = brd.create('point',[0.5,0.3],{name:'M'}); | ||
var b = brd.create('point',[3,0]); | var b = brd.create('point',[3,0]); | ||
var c = brd.create('circle',[m,b]); | var c = brd.create('circle',[m,b],{strokeColor:'black',name:'c'}); | ||
var | var m1 = brd.create('point',[-4,2],{name:'M_1'}); | ||
var b1 = brd.create('point',[-4,3],{name:'C_1'}); | |||
var c1 = brd.create('circle',[m1,b1]); | |||
var p = brd.create('glider',[-4,1,c1],{name:'P [drag me]'}); | |||
var t = brd.create('polar', [c,p], {name:'polar', withLabel:true, strokeColor:'gray', dash:2}); | |||
var t = brd.create(' | |||
var l = brd.create('line', [m,p], {name:'', withLabel:false, strokeColor:'gray', dash:2}); | var l = brd.create('line', [m,p], {name:'', withLabel:false, strokeColor:'gray', dash:2}); | ||
var s = brd.create('intersection', [l, | var s = brd.create('intersection', [l,t,0], {name:"P'", withLabel:true, trace:true}); | ||
</jsxgraph> | </jsxgraph> | ||
===The underlying JavaScript code=== | ===The underlying JavaScript code=== | ||
<source lang="javascript"> | <source lang="javascript"> | ||
var brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-5,5,5,-5]}); | |||
var m = brd.create('point',[0.5,0.3],{name:'M'}); | |||
var b = brd.create('point',[3,0]); | |||
var c = brd.create('circle',[m,b],{strokeColor:'black',name:'c'}); | |||
var m1 = brd.create('point',[-4,2],{name:'M_1'}); | |||
var b1 = brd.create('point',[-4,3],{name:'C_1'}); | |||
var c1 = brd.create('circle',[m1,b1]); | |||
var p = brd.create('glider',[-4,1,c1],{name:'P [drag me]'}); | |||
var t = brd.create('polar', [c,p], {name:'polar', withLabel:true, strokeColor:'gray', dash:2}); | |||
var l = brd.create('line', [m,p], {name:'', withLabel:false, strokeColor:'gray', dash:2}); | |||
var s = brd.create('intersection', [l,t,0], {name:"P'", withLabel:true, trace:true}); | |||
</source> | </source> | ||
[[Category:Geometry]] | [[Category:Geometry]] | ||
[[Category:Examples]] | [[Category:Examples]] |
Latest revision as of 08:01, 15 May 2010
The point [math]\displaystyle{ P' }[/math] is the result of a circle inversion of [math]\displaystyle{ P }[/math] on circle [math]\displaystyle{ c }[/math] (black circle line).
The underlying JavaScript code
var brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-5,5,5,-5]});
var m = brd.create('point',[0.5,0.3],{name:'M'});
var b = brd.create('point',[3,0]);
var c = brd.create('circle',[m,b],{strokeColor:'black',name:'c'});
var m1 = brd.create('point',[-4,2],{name:'M_1'});
var b1 = brd.create('point',[-4,3],{name:'C_1'});
var c1 = brd.create('circle',[m1,b1]);
var p = brd.create('glider',[-4,1,c1],{name:'P [drag me]'});
var t = brd.create('polar', [c,p], {name:'polar', withLabel:true, strokeColor:'gray', dash:2});
var l = brd.create('line', [m,p], {name:'', withLabel:false, strokeColor:'gray', dash:2});
var s = brd.create('intersection', [l,t,0], {name:"P'", withLabel:true, trace:true});