3D Plotter by Daanyaal Sobani
Make sure to enter your expresion in the form z = f(x,y);
In order to use functions like sin(x) or e x use
Math.sin(x) or Math.exp(x) for example (case sensitive).
Use W S A D to navigate and drag the mouse to change direction.
Examples:
-
Guassian Distribution
Input to plotter:
3*Math.exp(-Math.pow(x,2)-Math.pow(y,2))
Plot
-
Parabolic Bowel
Input to plotter:
Math.pow(x,2) + Math.pow(y,2)
Plot
-
Sin(x) + Cos(y)
Input to Plotter:
Math.sin(x)+Math.cos(y)
Plot