Create 3D Kuen Surface using interactive HPlotMX
Source code name: "canvas3D_hplotmx2.java"
Programming language: Java
Topic: Plots/3D
DMelt Version 1.2. Last modified: 08/29/2015. License: Pro
https://datamelt.org/code/cache/canvas3D_hplotmx2_7120.java
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.



import jhplot.*;
import vmm3d.surface.parametric.*; 

/**
 * An example of how to show 3D surface  
 */
public class canvas3D_hplotmx2{ 
	
   public static void main(String[] args)
   {


    // HPlotMX a = new HPlotMX("vmm3d.surface.parametric.Paraboloid");
    // a.visible();
     HPlotMX c1=new HPlotMX(); 
     KuenSurface ks= new KuenSurface();  // create Kuen Surface
     c1.draw(ks); 
     c1.visible(); 
 
  }

}


You see the box below because you did not login.