blob: 7c2108cfb981668c67d40426f293c2d4dbdde5ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?xml version="1.0" encoding="utf-8"?>
<jnlp href="3dmap.jnlp">
<information>
<title>3D Map</title>
<vendor>ScannerJammer</vendor>
<homepage href="http://scannerjammer.com/"/>
<description>3D Map Viewer</description>
<description kind="short">JOGL Applet that can generate a 3D landscape based on 2 images: texture and heightmap.</description>
<offline-allowed/>
</information>
<resources>
<j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
<property name="sun.java2d.noddraw" value="true"/>
<jar href="3dmap.jar" main="true"/>
<jar href="http/commons-codec-1.4.jar"/>
<jar href="http/commons-logging-1.1.1.jar"/>
<jar href="http/httpclient-4.1.2.jar"/>
<jar href="http/httpclient-cache-4.1.2.jar"/>
<jar href="http/httpcore-4.1.2.jar"/>
<jar href="http/httpmime-4.1.2.jar"/>
<jar href="http/plugin.jar"/>
<extension name="newt-all-awt" href="deployment/v1/jogl-awt.jnlp" />
</resources>
<applet-desc
name="3D Map"
main-class="com.scannerjammer.applet.heightmap.applet.Simple3DLandscapeApplet"
width="800"
height="600">
<param name="texture" value="http://www.chadvernon.com/blog/wp-content/uploads/2007/07/texture.jpg"/>
<param name="heightmap" value="http://www.chadvernon.com/blog/wp-content/uploads/2007/07/heightmap.jpg"/>
<param name="uploadCGI" value="http://asdf.us/cgi-bin/im/imgrid/upload.cgi"/>
<param name="bgColorRedChannel" value="50"/>
<param name="bgColorGreenChannel" value="50"/>
<param name="bgColorBlueChannel" value="50"/>
</applet-desc>
</jnlp>
|