jsxgraph.org
title
who
Who we are
original_objectives
Original objectives
whynotjava
Why not Java or Flash? I
whynotflash
Why not Java or Flash? II
alternatives
Future trends?
jsxgraph
JSXGraph
Open source library for interactive mathematics and interactive data displaying in the web browser
technicalfeatures
Some data
features
Features
load_file
Load file
basicconstruction
Basic construction
euler
Euler line
tangram
Tangram
polygon
Gradient polygon
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
sierpinski
Sierpinski triangle
randomwalk
Random walk
swineflu
SIR Model: Swine flu
predatorprey
Predator Prey
sinus
Sinus
floortan
Discontinuous function
linechart
Line chart
barchart
Bar chart
piechart
Pie chart
bundestag_elections
Bundestag elections
client_server_general
Server dia
shareprice
Stock Quotes
hsvFlower
HSV flower
Scripting with JavaScript enables recursive constructions
montecarlo
Monte carlo pi
bye
Last slide
More examples: http://jsxgraph.org