Archimedean spiral: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 9: | Line 9: | ||
var b = board.createElement('slider', [[1,-2],[5,-2],[0,0.25,4]]); | var b = board.createElement('slider', [[1,-2],[5,-2],[0,0.25,4]]); | ||
var c = board.createElement('curve', [function(phi){return a.Value()+b.Value()*phi; }, [0, 0],'phi',0, 8*Math.PI], | var c = board.createElement('curve', [function(phi){return a.Value()+b.Value()*phi; }, [0, 0],'phi',0, 8*Math.PI], | ||
{curveType:'polar', strokewidth: | {curveType:'polar', strokewidth:4}); | ||
</script> | </script> | ||
</html> | </html> | ||
Line 24: | Line 24: | ||
var b = board.createElement('slider', [[1,-2],[5,-2],[0,0-25,4]]); | var b = board.createElement('slider', [[1,-2],[5,-2],[0,0-25,4]]); | ||
var c = board.createElement('curve', [function(phi) a.Value()+b.Value()*phi; }, [0, 0],'phi',0, 8*Math.PI], | var c = board.createElement('curve', [function(phi) a.Value()+b.Value()*phi; }, [0, 0],'phi',0, 8*Math.PI], | ||
{curveType:'polar', strokewidth: | {curveType:'polar', strokewidth:4}); | ||
</source> | </source> | ||
[[Category:Examples]] | [[Category:Examples]] | ||
[[Category:Curves]] | [[Category:Curves]] |
Revision as of 17:18, 10 February 2009
The JavaScript code to produce this picture
<link rel="stylesheet" type="text/css" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/prototype.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
<div id="jsxgbox" class="jxgbox" style="width:500px; height:500px;"></div>
board = JXG.JSXGraph.initBoard('jsxgbox', {originX: 250, originY: 250, unitX: 50, unitY: 50});
var a = board.createElement('slider', [[1,-1],[5,-1],[0,1,4]]);
var b = board.createElement('slider', [[1,-2],[5,-2],[0,0-25,4]]);
var c = board.createElement('curve', [function(phi) a.Value()+b.Value()*phi; }, [0, 0],'phi',0, 8*Math.PI],
{curveType:'polar', strokewidth:4});