-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (64 loc) · 3.15 KB
/
index.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<!-- Text between angle brackets is an HTML tag and is not displayed.
Most tags, such as the HTML and /HTML tags that surround the contents of
a page, come in pairs; some tags, like HR, for a horizontal rule, stand
alone. Comments, such as the text you're reading, are not displayed when
the Web page is shown. The information between the HEAD and /HEAD tags is
not displayed. The information between the BODY and /BODY tags is displayed.
<head>
<title>Enter a title, displayed at the top of the window.</title>
</head>
<!-- The information between the BODY and /BODY tags is displayed.
<body>
<h1>Enter the main heading, usually the same as the title.</h1>
<p>Be <b>bold</b> in stating your key points. Put them in a list: </p>
<ul>
<li>The first item in your list</li>
<li>The second item; <i>italicize</i> key words</li>
</ul>
<p>Improve your image by including an image. </p>
<p><img src="http://www.mygifs.com/CoverImage.gif" alt="A Great HTML Resource"></p>
<p>Add a link to your favorite <a href="https://www.dummies.com/">Web site</a>.
Break up your page with a horizontal rule or two. </p>
<hr>
<p>Finally, link to <a href="page2.html">another page</a> in your own Web site.</p>
<!-- And add a copyright notice.
<p>© Wiley Publishing, 2011</p>
</body>-->
<head>
<title>CS275 Final Project: L-System Plants</title>
</head>
<body>
<center>
<h1>CS275 Final Project: L-System Plants</h1>
<p> Project by Pravin Visakan, ID: 504825910 </p>
<h2>Abstract</h2>
<p>Real plants exist as physical entities in a physical world, and the interaction between the two can affect overall plant structure. This project explores the use of physics simulation to produce phy sically-influenced structures. In the course of doing so, a variant of the L-System formalism is de veloped. This more object-oriented plant model leverages common programming constructs and compatib ility with common game engine architectures.</p>
<h2>Screenshots</h2>
<p>
<img src="images/plant0.png" alt="Growth steps of an L-System" width="300">
<img src="images/plant1.png" alt="Growth steps of an L-System"width="300">
<img src="images/plant2.png" alt="Growth steps of an L-System"width="300">
<img src="images/plant3.png" alt="Growth steps of an L-System"width="300">
<img src="images/plant4.png" alt="Growth steps of an L-System"width="300">
</p>
<p> <b>Above:</b> The first 5 growth steps of an L-System.</p>
<br/>
<p>
<img src="images/stochastic_tree.png" alt="Growth steps of an L-System" width="300">
</p>
<p> <b>Above:</b> An L-System plant with randomized branch culling and placement.</p>
<br/>
<h2>Video</h2>
<video controls width="300">
<source src="video/stochastic_grow.avi" type="video/avi">
If your browser doesn't support embedded video, here's a <a href="video/stochastic_grow.avi">link</a>.
</video>
<p>If your browser doesn't support embedded video, here's a <a href="video/stochastic_grow.avi">link</a>.</p>
<h2>Report</h2>
<p>A link to the full <a href="final_report.pdf">report</a>.</p>
<h2>Slides</h2>
<p>A link to the <a href="presentation.pdf">slides</a>.</p>
</center>
</body>
</html>