blob: 92be36165ebe709cf220ccec14ee921819bbfb39 (
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
39
40
41
42
43
44
45
|
<script src="./softbody_1/dist/output.js"></script>
<script>
window.onload = function() {
var lPlayElement = document.getElementById('gl_canvas_play'),
lStopElement = document.getElementById('gl_canvas_stop');
lPlayElement.addEventListener('click', function() {
lPlayElement.style.display = 'none';
lStopElement.style.display = 'block';
});
lStopElement.addEventListener('click', function() {
lStopElement.style.display = 'none';
lPlayElement.style.display = 'block';
});
}
</script>
<article>
<h1>Springs</h1>
<section>
<p>
It is time to investigate what it means to have a deformation in our physics system. By deformation, I mean that the
vertices of our shapes are no longer fixed to one point within the model. We will begin with what I believe
by investigating the most common of all deformations: a weight attached to a spring in two dimensions.
</p>
</section>
<section>
<h2></h2>
</section>
<section>
<h2>
Live Example
</h2>
<p>
</p>
<div class="opengl_canvas_container">
<canvas id="gl_canvas" width="800" height="600"></canvas>
<button id="gl_canvas_play" class="play_button">
Play
</button>
<button id="gl_canvas_stop" class="stop_button">
Stop
</button>
</div>
</section>
</article>
|