Synchronous file load: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 29: | Line 29: | ||
</source> | </source> | ||
[[Category: | [[Category:Old]] |
Latest revision as of 12:59, 18 October 2024
var board = JXG.JSXGraph.initBoard('jxgbox');
JXG.FileReader.parseFileContent('//jsxgraph.org/geonext/point.ggb', board, 'GeoGebra', false);
board.create('point',[0,0], {fixed:true, name:'jsxpoint1', size:1});
var J = JXG.getReference(board, "jsxpoint1");
var G = JXG.getReference(board, "geogebrapoint1");
J.setAttribute({size: 5});
G.setAttribute({size: 10});
board.setBoundingBox([-5, 5, 5, -5], true);