Positioning of labels: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) (Created page with "<jsxgraph width="6002 height="600"> var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-2,2,2,-2], axis:true, keepaspectratio:false}); var p = []; for (var i=0; i<4; i++) ...") |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<jsxgraph width=" | <jsxgraph width="600" height="600"> | ||
var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-2,2,2,-2], axis:true, keepaspectratio:false}); | var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-2,2,2,-2], axis:true, keepaspectratio:false}); | ||
var p = []; | var p = []; | ||
for (var i=0; i<4; i++) { | for (var i=0; i<4; i++) { | ||
p.push(brd.create('point', [Math.random()*3.6-1.8, Math.random()*3.6-1.8]); | p.push(brd.create('point', [Math.random()*3.6-1.8, Math.random()*3.6-1.8])); | ||
} | } | ||