Colorful circles: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<jsxgraph width="600" height="600">
<jsxgraph width="600" height="600">
JXG.Options.point.zoom = true;
JXG.Options.point.zoom = true;
var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-0.1,1.1,1.1,-0.1]});
var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-0.1,1.1,1.1,-0.1], takeFirst: false});
var i, h, s, v;
var i, h, s, v;


Line 9: Line 9:
   s = Math.random();
   s = Math.random();
   v = 1.0;
   v = 1.0;
   brd.createElement('point',[Math.random(),Math.random()],
   brd.create('point',[Math.random(),Math.random()],
     {
     {
       withLabel:false,  
       withLabel:false,  
Line 34: Line 34:
   s = Math.random();
   s = Math.random();
   v = 1.0;
   v = 1.0;
   brd.createElement('point',[Math.random(),Math.random()],
   brd.create('point',[Math.random(),Math.random()],
     {
     {
       withLabel:false,  
       withLabel:false,  

Latest revision as of 20:08, 14 November 2020

The underlying JavaScript code

JXG.Options.point.zoom = true;
var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-0.1,1.1,1.1,-0.1]});
var i, h, s, v;

for (i=0;i<30;i++) {
  h = Math.random()*360;
  s = Math.random();
  v = 1.0;
  brd.create('point',[Math.random(),Math.random()],
     {
       withLabel:false, 
       face:'circle', 
       size:Math.random()*65,
       strokeColor:JXG.hsv2rgb(h,s,v),
       fillColor:JXG.hsv2rgb((h+180)%360,s,v),
       highlightFillColor:JXG.hsv2rgb(h,s,v),
       fillOpacity:0.7,
       highlightFillOpacity:0.4
      });
}