Multiple logarithmic spirals: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 4: Line 4:
  var b = board.createElement('slider', [[1,-2],[5,-2],[0,0.15,1]], {name:'b'});
  var b = board.createElement('slider', [[1,-2],[5,-2],[0,0.15,1]], {name:'b'});
  for (var i=0;i<8;i++) {
  for (var i=0;i<8;i++) {
   (function() { return board.createElement('curve', [function(phi){return a.Value()*board.pow(Math.E,b.Value()*phi*Math.PI*i*0.25); }, [0, 0], 0, 8*Math.PI],
   (function(x) { return board.createElement('curve', [function(phi){return a.Value()*board.pow(Math.E,b.Value()*phi*Math.PI*x*0.25); }, [0, 0], 0, 8*Math.PI],
             {curveType:'polar', strokewidth:4});         
             {curveType:'polar', strokewidth:4});         
   })();
   })(i);
  }
  }
</jsxgraph>
</jsxgraph>

Revision as of 17:44, 24 April 2009