Kreisfläche

Aus Wiki1

(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Zeile 16: Zeile 16:
var V_dot=function()
var V_dot=function()
{
{
-
var v_val=Math.abs(pv1.X()-pv0.X())/10;
+
var v_val=Math.abs(pv1.X()-pv0.X())/1000;
var v_ex=(pv1.Y()-pv0.Y())/10;
var v_ex=(pv1.Y()-pv0.Y())/10;
return Math.round(1000*Math.pow(v_val,v_ex))/1000;
return Math.round(1000*Math.pow(v_val,v_ex))/1000;
Zeile 27: Zeile 27:
var Den=function()
var Den=function()
{
{
-
var d_val=Math.abs(pd1.X()-pd0.X());
+
var d_val=Math.abs(pd1.X()-pd0.X())/1000;
var d_ex=(pd1.Y()-pd0.Y())/10;
var d_ex=(pd1.Y()-pd0.Y())/10;
return Math.round(1000*Math.pow(d_val,d_ex))/1000;
return Math.round(1000*Math.pow(d_val,d_ex))/1000;

Version vom 17:37, 8. Dez. 2013

Mit Hilfe des Programmpakets JSXGraph (siehe http://jsxgraph.uni-bayreuth.de/wp/) können komplexe, interaktive Grafiken nur mit Hilfe von JavaScript in Webseiten integriert werden. Details unter http://jsxgraph.uni-bayreuth.de/docs/symbols/Circle.html

Persönliche Werkzeuge