Difference between revisions of "Random points"

From JSXGraph Wiki
Jump to navigationJump to search
Line 41: Line 41:
 
</source>
 
</source>
  
===Draw 100 random points===
+
===Draw 50 random points===
These 100 points are updated on the onmouseover event and get  
+
These 50 points are updated on the onmouseover event and get  
 
new random coordinates.
 
new random coordinates.
 
<html>
 
<html>
Line 50: Line 50:
 
<div id="box2" class="jxgbox" style="width:400px; height:400px;" onmouseover="board2.update()"></div>
 
<div id="box2" class="jxgbox" style="width:400px; height:400px;" onmouseover="board2.update()"></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});
 
 
  board2.suspendUpdate();
 
  board2.suspendUpdate();
 
  for (var i=0;i<50;i++) {
 
  for (var i=0;i<50;i++) {

Revision as of 16:32, 7 December 2008

Draw 50 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<50;i++) {
                var p = board.createElement('point',
                       [Math.random(),Math.random()],{style:5,name:' '});
            }
            board.unsuspendUpdate();
        }
        reload();

Draw 50 random points

These 50 points are updated on the onmouseover event and get new random coordinates.