-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathManatee.html
43 lines (41 loc) · 1.77 KB
/
Manatee.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manatee</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<div class="container">
<div id="nav-placeholder">
</div>
<div class="content">
<p id="Content-heading">Manatee</p>
<p>
During the course form-finding I choose to write my assignment about dynamic relaxation.
The result was the Grasshopper plugin Manatee.
The plugin is an implementation of the position-based dynamic relaxation algorithm.
</p>
<p>Features:</p>
<ul>
<li>Simulate hanging chain models</li>
<li>Make quad meshes conical </li>
<li>Make all faces of a grid planar</li>
<li>Non-linear rod elements for active-bending</li>
</ul>
<p>The following video shows the plugin in action:</p>
<video id="example_video_2" class="video-js vjs-default-skin" controls preload="none" width="100%" height="auto" data-setup="{}" poster="ManateePoster.png">
<source src="ManateeDemo.mp4" type="video/mp4">
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
</video>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#nav-placeholder').load("navbar.html");
});
</script>
</body>
</html>