summaryrefslogtreecommitdiff
path: root/frontend/2d/_collisions/polygon_polygon.html.content
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/2d/_collisions/polygon_polygon.html.content')
-rw-r--r--frontend/2d/_collisions/polygon_polygon.html.content40
1 files changed, 0 insertions, 40 deletions
diff --git a/frontend/2d/_collisions/polygon_polygon.html.content b/frontend/2d/_collisions/polygon_polygon.html.content
deleted file mode 100644
index 969ce65..0000000
--- a/frontend/2d/_collisions/polygon_polygon.html.content
+++ /dev/null
@@ -1,40 +0,0 @@
-<script src="./polygon_polygon/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>Polygon Intersections</h1>
- <section>
- </section>
- <section>
- <h2>
- Live Example
- </h2>
- <div class="opengl_canvas_container">
- <canvas id="gl_canvas" width="640" height="480"></canvas>
- <button id="gl_canvas_play" class="play_button">
- Play
- </button>
- <button id="gl_canvas_stop" class="stop_button">
- Stop
- </button>
- </div>
- <footer id="references">
- <h2>References</h2>
- <ul>
- </ul>
- </footer>
- </section>
-</article>