Two reflections I (parallel lines): Difference between revisions

From JSXGraph Wiki
(Created page with "<jsxgraph width="500" height="500" box="box"> (function () { var board = JXG.JSXGraph.initBoard('box', {boundingbox: [-5, 5, 5, 5], keepaspectratio:true}), A = board.cr...")
 
No edit summary
Line 5: Line 5:
       B = board.create('point', [3, -4], {withLabel:false}),
       B = board.create('point', [3, -4], {withLabel:false}),
       C = board.create('point', [-2, 2], {withLabel:false}),
       C = board.create('point', [-2, 2], {withLabel:false}),
       s = board.create('line',[A,B], {name:'s', withLabel:true),
       s = board.create('line',[A,B], {name:'s', withLabel:true}),
       t = board.create('parallel',[s,C], {name:'t', withLabel:true);
       t = board.create('parallel',[s,C], {name:'t', withLabel:true});
})();
})();
</jsxgraph>
</jsxgraph>

Revision as of 12:08, 29 November 2011

The JavaScript code