diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2021-05-16 19:50:15 -0400 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2021-05-16 19:50:15 -0400 |
commit | a00c0aab1eb5a7a55bef8ca08115bdd722ab5699 (patch) | |
tree | 45b5c4cc8c380d0630a8e0185af7229f26dc754a /frontend/2d/_collisions/polygon_polygon.html | |
parent | 4941a1874b6ca9d142d94df70b2aec5e0b35b94e (diff) |
Moved the frontend directory up so that it no longer exists
Diffstat (limited to 'frontend/2d/_collisions/polygon_polygon.html')
-rw-r--r-- | frontend/2d/_collisions/polygon_polygon.html | 94 |
1 files changed, 0 insertions, 94 deletions
diff --git a/frontend/2d/_collisions/polygon_polygon.html b/frontend/2d/_collisions/polygon_polygon.html deleted file mode 100644 index df02b9b..0000000 --- a/frontend/2d/_collisions/polygon_polygon.html +++ /dev/null @@ -1,94 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <link rel="stylesheet" href="/index.css"> - <title>Physics for Games</title> - <link rel="shortcut icon" href="favicon/favicon.ico" type="image/x-icon"> - </head> - <body> - <header> - <h1>Physics for Games</h1> - </header> - <main> - <nav> - <ul class="outer-tree"> - <li><a href="/">Introduction</a></li> - <li> - <span>🏀<span>2D</span></span> - <ul class="inner-tree"> - <li><label>Rigidbody</label></li> - <li><a href="/2d/_rigidbody/part_1.html">Linear Forces</a></li> - <li><a href="/2d/_rigidbody/part_2.html">Rotational Forces</a></li> - <li><a href="/2d/_rigidbody/part_3.html">Collision Forces</a></li> - <li><label>Collisions</label></li> - <li><a href="/2d/_collisions/circle_line.html">Circle-Line</a></li> - <li><a href="/2d/_collisions/rectangle_line.html">Rectangle-Line</a></li> - <li><a href="/2d/_collisions/rectangle_rectangle.html">Rectangle-Rectangle</a></li> - <li><a href="/2d/_collisions/pill_line.html">Pill-Line</a></li> - <li><a href="/2d/_collisions/pill_pill.html">Pill-Pill</a></li> - <li><a href="/2d/_collisions/polygon_polygon.html">Polygon-Polygon</a></li> - </ul> - </li> - <li> - <span>🌠<span>3D</span></span> - <ul class="inner-tree"> - </ul> - </li> - <li> - <span>🔧<span>WebAssembly</span></span> - <ul class="inner-tree"> - <li><a href="/intro/intro.html">Introduction</a></li> - </ul> - </li> - <li> - <span>🛈<span>About</span></span> - <ul class="inner-tree"> - <li><a href="/roadmap.html">Roadmap</a></li> - </ul> - </li> - </ul> - </nav> -<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> - </main> - </body> -</html> |