Displaying Intergeo constructions: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
=== Loading | === Loading an [http://i2geo.net Intergeo] construction from a file === | ||
Here, we load the content of the Intergeo file "pythagoras.i2g" into JSXGraph, i.e. | Here, we load the content of the [http://i2geo.net Intergeo] file "pythagoras.i2g" into JSXGraph, i.e. | ||
into the division with the id "box". | into the division with the id "box". | ||
<source lang="xml"> | <source lang="xml"> |
Revision as of 16:24, 21 January 2009
Loading an Intergeo construction from a file
Here, we load the content of the Intergeo file "pythagoras.i2g" into JSXGraph, i.e. into the division with the id "box".
<link rel="stylesheet" type="text/css" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/prototype.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
<div id="box" class="jxgbox" style="width:700px; height:500px;"></div>
<script type="text/javascript">
var brd = JXG.JSXGraph.loadBoardFromFile('box', '/geonext/intergeo1.xml', 'Intergeo');
</script>