Development Versions of 3D-XplorMath-J

Download the latest development version:

  as an executable jar file:     3D-XplorMath-J

  for Macs (as a dmg file):   3D-XplorMath-J.dmg


Some Demos of 3D-XPlorMath-J Applets

Demo of Applets in Several Languages

          Click Here to Launch 3D-XplorMath-J as an applet in English 

          Click Here to Launch 3D-XplorMath-J as an applet in Japanese
		  
          Click Here to Launch 3D-XplorMath-J as an applet in German

          Click Here to Launch 3D-XplorMath-J as an applet in French

          Click Here to Launch 3D-XplorMath-J as an applet in Spanish

          Click Here to Launch 3D-XplorMath-J as an applet in Chinese
   

Here is how to launch 3D-XplorMath from a web-page as an applet in a separate window.

(NOTE: Using a separate window has an important advantage: the "User-Defined" Exhibits are available !)

Applet tag:

    <applet code="vmm.xm3d.LauncherApplet.class" archive="3D-XplorMath-J.jar" width="300" height="50">
    </applet>

Applet:


And, here is how to do the same with a specific Exhibit chosen at startup.

Applet tag:

    <applet code="vmm.xm3d.LauncherApplet.class" archive="3D-XplorMath-J.jar" width="300" height="50">
       <param name="Exhibit" value="vmm.spacecurve.parametric.TorusKnot">
       <param name="OpenCommand" value="Show TorusKnot Exhibit">
    </applet>

Applet:


This shows how to launch 3D-XplorMath as an applet embedded in a web-page.

(NOTE: With this approach the "User-Defined" Exhibits are NOT available !)

Applet tag:

    <applet code="vmm.xm3d.EmbeddedApplet.class" archive="3D-XplorMath-J.jar" width="600" height="400">
    </applet>

Applet:


And here is how to launch 3D-XplorMath as an embedded applet and restricted to a single Exhibit.

Applet tag:

    <applet code="vmm.xm3d.EmbeddedApplet.class" archive="3D-XplorMath-J.jar" width="600" height="450">
        <param name="Exhibit" value="vmm.conformalmap.Sine">
        <param name="SingleExhibit" value="yes">
        <param name="StatusBar" value="no">
    </applet>