Three touching circles: Difference between revisions

From JSXGraph Wiki
(Created page with "<jsxgraph width="500" height="600"> var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-5,5,5,-5]}); </jsxgraph>")
 
No edit summary
Line 1: Line 1:
<jsxgraph width="500" height="600">
<jsxgraph width="500" height="500">
var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-5,5,5,-5]});
var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-5,5,5,-5]});
var A  = brd.create('point', [0,0]),
    B  = brd.create('point', [2,0]),
    C  = brd.create('point', [1,2]),
    a1 = brd.create('segment', [A,B], {name:'a1', withLabel:true}),
    a2 = brd.create('segment', [B,C], {name:'a2', withLabel:true}),
    a3 = brd.create('segment', [C,A], {name:'a3', withLabel:true}),
</jsxgraph>
</jsxgraph>

Revision as of 10:37, 8 November 2011