whynotflash
Why not Java or Flash? II
jsxgraph
JSXGraph
Open source
library for interactive mathematics and interactive data displaying in the web browser
apollonian
Apollonian circle packing
koch
Koch snowflake
t = brd.createElement('turtle');
function koch(x,level) {
if (level<1) t.fd(x);
else {
koch(x/3,level-1);
t.lt(60);
koch(x/3,level-1);
t.rt(120);
koch(x/3,level-1);
t.lt(60);
koch(x/3,level-1);
}
}
t.setPos(-250,0);
t.rt(90);
koch(400,7);
16385 data points
hsvFlower
HSV flower
Scripting with JavaScript enables recursive constructions
bye
Last slide
More examples: http://jsxgraph.org