setInterval(0.05); $function = new MathFunction('sqrt', 0); $plot->add($function, "sqrt(x)"); function x2($x) { return - $x * $x; } $function = new MathFunction('sin', -2, 2); $function->setColor(new DarkBlue); $plot->add($function, "sin(x) (-2 < x < 2)"); $plot->legend->setPosition(0.98, 0.8); $plot->legend->setTextFont(new Tuffy(8)); $graph->add($plot); $graph->draw(); ?>