Multiple logarithmic spirals: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) 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(x) { return board.createElement('curve', [function(phi){return a.Value()*Math.exp(b.Value()*phi+Math.PI*x*0.25); }, [0, 0], | (function(x) { return board.createElement('curve', [function(phi){return a.Value()*Math.exp(b.Value()*phi+Math.PI*x*0.25); }, [0, 0], -8*Math.PI, 16*Math.PI], | ||
{curveType:'polar', strokewidth:4}); | {curveType:'polar', strokewidth:4}); | ||
})(i); | })(i); |