Random points: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 48: | Line 48: | ||
<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/prototype.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/jsxgraphcore.js"></script> | ||
<div id="box2" class="jxgbox" style="width:400px; height:400px;" onmouseover="board2.update()"></div> | |||
<div id="box2" class="jxgbox" style="width:400px; height:400px;"></div> | |||
<script language="JavaScript"> | <script language="JavaScript"> | ||
board2 = JXG.JSXGraph.initBoard('box2', {originX: 10, originY:390 , unitX:380 , unitY: 380}); | board2 = JXG.JSXGraph.initBoard('box2', {originX: 10, originY:390 , unitX:380 , unitY: 380}); | ||
Line 58: | Line 57: | ||
{style:5,name:' '}); | {style:5,name:' '}); | ||
} | } | ||
board2.unsuspendUpdate(); | |||
</script> | </script> | ||
</html> | </html> |
Revision as of 14:27, 7 December 2008
Draw 100 random points
board = JXG.JSXGraph.initBoard('box', {originX: 10, originY:390 , unitX:380 , unitY: 380});
function reload() {
JXG.JSXGraph.freeBoard(board);
board = JXG.JSXGraph.initBoard('box', {originX: 10, originY: 390, unitX: 380, unitY: 380});
board.suspendUpdate();
for (var i=0;i<100;i++) {
var p = board.createElement('point',
[Math.random(),Math.random()],{style:5,name:' '});
}
board.unsuspendUpdate();
}
reload();
Draw 100 random points
These 100 points are updated on the onmouseover event and get new random coordinates.