-
Notifications
You must be signed in to change notification settings - Fork 0
/
LSystems.html
54 lines (50 loc) · 1.95 KB
/
LSystems.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>L-Systems String Generator</title>
<meta id="keywords" name="keywords" content="L-Systems String Generator" />
<meta id="description" name="description" content="L-Systems String Generator" />
<meta name="author" content="Dileep Miriyala(దిలీపు మిరియాల)" />
<link rel="shortcut icon" href="/Miriyam.ico" />
<link href="styles.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="util.js"></script>
<meta charset="utf-8" />
</head>
<body>
<h2>L-Systems String Generator</h2>
<h3>Params</h3>
<table border="0" class="table">
<tr>
<td style="width:64px;"><label for="txtAxiom">Seed</label></td>
<td>
<input type="text" name="txtAxiom" id="txtAxiom" value="" />
</td>
</tr>
<tr>
<td><label for="txtMax">Max</label></td>
<td>
<input type="text" name="txtMax" id="txtMax" value="" maxlength="3" />
</td>
</tr>
</table>
<h3>Rules</h3>
<table border="0" class="table" id="rules"></table>
<table border="0" class="table" style="width:128px; font-weight:bold;">
<tr>
<td>
<button type="button" id="btnAdd" title="Add Rule" style="color:green; font-size:1.5em;">+</button>
</td>
<td>
<button type="button" id="btnRemove" title="Remove Rule" style="color:red;font-size:1.5em;">-</button>
</td>
<td>
<button type="button" id="btnGo" title="Go" style="color:blue;">Go</button>
</td>
</tr>
</table>
<div class="blank"></div>
<div id="table" border="1" class="grid"></div>
<script type="text/javascript" src="LSystems.js"></script>
<div class="right"><span class="content">~ Dileep Miriyala(దిలీపు మిరియాల)</span></div>
</body>
</html>