Displaying Intergeo constructions: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
(One intermediate revision by the same user not shown)
Line 5: Line 5:
<link rel="stylesheet" type="text/css" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
<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/jsxgraphcore.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/IntergeoReader.js"></script>
<div id="box" class="jxgbox" style="width:700px; height:500px;"></div>
<div id="box" class="jxgbox" style="width:700px; height:500px;"></div>
<script type="text/javascript">
<script type="text/javascript">
Line 14: Line 15:
<link rel="stylesheet" type="text/css" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
<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/jsxgraphcore.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/IntergeoReader.js"></script>
<div id="box" class="jxgbox" style="width:700px; height:500px;"></div>
<div id="box" class="jxgbox" style="width:700px; height:500px;"></div>
<script type="text/javascript">
<script type="text/javascript">

Revision as of 05:52, 1 June 2010

Loading an Intergeo construction from a file

Here, we load the content of the Intergeo file "intergeo1.xml" 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/jsxgraphcore.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/IntergeoReader.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>