Difference between revisions of "Hyperbola"

From JSXGraph Wiki
Jump to navigationJump to search
(Created page with "<jsxgraph width="500" height="500"> JXG.Options.label.autoPosition = true; JXG.Options.text.fontSize = 16; var board = JXG.JSXGraph.initBoard('jxgbox', { boundingbox: [-2, 5,...")
 
Line 5: Line 5:
 
var board = JXG.JSXGraph.initBoard('jxgbox', { boundingbox: [-2, 5, 8, -5], axis: true, showClearTraces: true});
 
var board = JXG.JSXGraph.initBoard('jxgbox', { boundingbox: [-2, 5, 8, -5], axis: true, showClearTraces: true});
  
var a = board.create('hyperbola', [[-1,0], [1,0]],);
+
var a = board.create('hyperbola', [[-1,0], [1,0]]);
 
</jsxgraph>
 
</jsxgraph>
  

Revision as of 21:29, 13 June 2021

The underlying JavaScript code