FRP parametric function in HPlot3DP
Source code name: "canvas3D_param.py"
Programming language: Python
Topic: Plots/3D
DMelt Version 1. Last modified: 05/09/2015. License: Pro
https://datamelt.org/code/cache/canvas3D_param_441.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 = HPlot3DP("Canvas")  
c1.setGTitle('3D surfaces')
c1.visible()

f1=FPR('n=2.5 Pi; z=sin(n*x)+sin(n*y); z=z/n')
f1.setFillColor(Color.red)
f1.setLineColor(Color.green)
c1.draw(f1)


You see the box below because you did not login.