File: applets.html

package info (click to toggle)
jep 2.4.1%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,748 kB
  • sloc: java: 28,213; xml: 206; makefile: 15; sh: 6
file content (24 lines) | stat: -rw-r--r-- 748 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Example Applets</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<h1>Function Plotter</h1>
<applet code="org/nfunk/jepexamples/FunctionPlotter.class" codebase="../build" width="200" height="236">
  <param name=initialExpression value="100 sin(x/5) cos(x/50)">
</applet>

<h1>Evaluator</h1>
<applet code="org/nfunk/jepexamples/Evaluator.class" codebase="../build" width="367" height="154">
</applet>

<h1>Fractals</h1>
<applet code="org.nfunk.jepexamples.Fractal" codebase="../build" width=300 height=320>
<param name=initialExpression value="z*z+c">
</applet>

</body>
</html>