Function in 3D with colored contour areas
Source code name: "canvas3D_func_contour.py"
Programming language: Python
Topic: Plots/Contour
DMelt Version 1.5. Last modified: 05/19/2016. License: Pro
https://datamelt.org/code/cache/canvas3D_func_contour_5200.py
To run this script using the DMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.


from jhplot import *
from java.awt import Color
from java.util import Random

c1=HPlotXYZ("test",600,400)
c1.setGTitle("3D function")
c1.visible()

f1=F2D("x*x+y*y",-2,2,-2,2)
c1.setContourColor3D()
c1.add(f1)
# c1.setLegendBar()
c1.setTickDecimalAll(1)
c1.update()




You see the box below because you did not login.