Difference between revisions of "Parabola II"

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; JXG.Options.line.strokeWidth = 0.8; var board = JXG.JSXGraph.initBo...")
 
Line 8: Line 8:
 
var f = board.create('glider', [1, 0, board.defaultAxes.x], {name:"f"});
 
var f = board.create('glider', [1, 0, board.defaultAxes.x], {name:"f"});
 
var c = board.create('glider', [-1, 0, board.defaultAxes.x], {name:"c"});
 
var c = board.create('glider', [-1, 0, board.defaultAxes.x], {name:"c"});
var l = board.create('parallel', [board.defaultAxes.c], {name:"l", withLabel:true});
+
var l = board.create('parallel', [board.defaultAxes.y, c], {name:"l", withLabel:true});
  
 
var par = board.create('parabola', [f, l]);
 
var par = board.create('parabola', [f, l]);

Revision as of 14:59, 28 June 2021

The underlying JavaScript code