Graficar una ecuación en un canvas con html5 y javascript
Un buen ejemplo, solo ir a la parte del codigo de la linea 175 o 180 o 184
e introducir la funcion deseada
....
myGraph.drawEquation(function(x) {
return 5 * Math.sin(x);
}, 'green', 3);
myGraph.drawEquation(function(x) {
return x * x;
}, 'blue', 3);
myGraph.drawEquation(function(x) {
return 1 * x;
}, 'red', 3);
....
http://www.html5canvastutorials.com/labs/html5-canvas-graphing-an-equation/
No hay comentarios:
Publicar un comentario