Hyperbola II: Difference between revisions

From JSXGraph Wiki
(Created page with "<jsxgraph width="500" height="500"> JXG.Options.label.autoPosition = true; JXG.Options.text.fontSize = 16; JXG.Options.line.strokeWidth = 0.8; var board = JXG.JSXGraph.initBo...")
 
No edit summary
Line 6: Line 6:
var board = JXG.JSXGraph.initBoard('jxgbox', { boundingbox: [-5, 5, 5, -5], axis: true, showClearTraces: true});
var board = JXG.JSXGraph.initBoard('jxgbox', { boundingbox: [-5, 5, 5, -5], axis: true, showClearTraces: true});


var h = board.create('hyperbola', [[-1,1], [1,1], [2, Math.sqrt(3)]]);
var h = board.create('functiongraph', ['1/x']);
var l1 = board.create('line', [0, 1, 1], {dash: 1});
var l1 = board.create('line', [0, 1, 0], {dash: 1});
var l2 = board.create('line', [0, -1, 1], {dash: 1});
</jsxgraph>
</jsxgraph>



Revision as of 19:32, 27 June 2021

The underlying JavaScript code