Poincare disc model: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 9: | Line 9: | ||
var pp = brd.create('point',[1,2],{withLabel:false}); | var pp = brd.create('point',[1,2],{withLabel:false}); | ||
var t = brd.create('polar', [c,pp], { | var t = brd.create('polar', [c,pp], {visible:false}); | ||
var l = brd.create('line', [[0,0],pp], { | var l = brd.create('line', [[0,0],pp], {visible:false}); | ||
var A = brd.create('intersection', [l,t,0], { | var A = brd.create('intersection', [l,t,0], {withLabel:true,visible:false}); | ||
var M = brd.create('midpoint',[pp,A]); | var M = brd.create('midpoint',[pp,A], {withLabel:true,visible:false}); | ||
var p0 = brd.create('perpendicularpoint',[l,M]); | var p0 = brd.create('perpendicularpoint',[l,M], {withLabel:true,visible:false}); | ||
var line = brd.create('line', [p0,M], {name:'', withLabel:false, strokeColor:'gray', dash:2}); | var line = brd.create('line', [p0,M], {name:'', withLabel:false, strokeColor:'gray', dash:2}); | ||