 |
Two F2D functions on the same HPlot3D canvas
Source code name: "func_3dover.py"
Programming language: Python
Topic: Function/2D
DMelt Version 1. Last modified: 12/11/2015. License: Pro
https://datamelt.org/code/cache/func_3dover_7847.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 java.awt import Color
from jhplot import *
c1 = HPlot3D('Canvas',600,600)
c1.setNameX('X')
c1.setNameY('Y')
c1.visible()
f1=F2D('x^2+y^2', -2.0, 2.0, -2.0, 2.0)
f2=F2D('4*x*y', -2.0, 2.0, -2.0, 2.0)
c1.draw(f1,f2)
You see the box below because you did not login.