|
1 | 1 | <!doctype html> |
2 | 2 | <html lang="en-us"> |
3 | | -<head></head> |
| 3 | +<head> |
| 4 | + <title>Trailcode's Projects</title> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <meta name="description" content="Zombie GeoSim: A WebAssembly-powered geospatial simulation."> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 8 | + <style> |
| 9 | + .cool-button { |
| 10 | + display: inline-block; |
| 11 | + padding: 0.75em 2em; |
| 12 | + margin: 0.5em 0; |
| 13 | + font-size: 1.1em; |
| 14 | + font-weight: bold; |
| 15 | + color: #fff; |
| 16 | + background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%); |
| 17 | + border: none; |
| 18 | + border-radius: 30px; |
| 19 | + box-shadow: 0 4px 14px 0 rgba(0,118,255,0.15); |
| 20 | + text-decoration: none; |
| 21 | + transition: background 0.3s, transform 0.2s; |
| 22 | + cursor: pointer; |
| 23 | + } |
| 24 | + .cool-button:hover, .cool-button:focus { |
| 25 | + background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%); |
| 26 | + transform: translateY(-2px) scale(1.04); |
| 27 | + box-shadow: 0 6px 20px 0 rgba(0,118,255,0.25); |
| 28 | + outline: none; |
| 29 | + } |
| 30 | + </style> |
| 31 | +</head> |
4 | 32 | <body> |
5 | | -<a href="https://trailcode.github.io/ZombiGeoSim/index.html">Zombi GeoSim</a> |
| 33 | + <hr /> |
| 34 | + <h1>EzyCad</h1> |
| 35 | + <p> |
| 36 | + <strong>EzyCad</strong> is a modern CAD (Computer-Aided Design) application designed for creating and manipulating 2D and 3D models. It leverages OpenGL, ImGui, and Open CASCADE Technology (OCCT) to provide a robust and interactive user interface for CAD operations. |
| 37 | + <br /><br /> |
| 38 | + <a href="EzyCad/EzyCad.html" class="cool-button">Launch EzyCad</a> |
| 39 | + <br /><br /> |
| 40 | + <a href="https://github.com/trailcode/EzyCad" target="_blank">View EzyCad on GitHub</a> |
| 41 | + </p> |
| 42 | + <hr /> |
| 43 | + <h1>Zombi GeoSim</h1> |
| 44 | + <p> |
| 45 | + <strong>Zombi GeoSim</strong> is a geospatial simulation tool powered by WebAssembly. It allows users to explore and simulate various geospatial scenarios directly in the browser for high performance and interactivity. |
| 46 | + </p> |
| 47 | + <p> |
| 48 | + <a href="https://www.youtube.com/watch?v=s0unMIQUs1U" target="_blank"> |
| 49 | + <img src="https://img.youtube.com/vi/s0unMIQUs1U/0.jpg" alt="YouTube video of current native development version" style="max-width:100%;height:auto;border:1px solid #ccc;" /> |
| 50 | + </a> |
| 51 | + <br /> |
| 52 | + <small>YouTube video of current native development version.</small> |
| 53 | + </p> |
| 54 | + <h2>How to Use</h2> |
| 55 | + <ol> |
| 56 | + <li>Click the link below to launch the Zombi GeoSim application.</li> |
| 57 | + <li><strong>Be patient and allow the application time to load.</strong></li> |
| 58 | + <li>Mouse scroll <strong>zooms in and out</strong>.</li> |
| 59 | + <li>Hold down the <strong>"alt"</strong> key and move the mouse to <strong>pan</strong> the view.</li> |
| 60 | + <li>Hold down the <strong>"shift"</strong> key and move the mouse to <strong>rotate the camera</strong>.</li> |
| 61 | + <li>Use the available tools to modify parameters, visualize data, and run simulations in real-time.</li> |
| 62 | + <li> |
| 63 | + For more advanced usage, refer to the |
| 64 | + <a href="https://github.com/trailcode/webAsmPlay/blob/master/readme.md" target="_blank">webAsmPlay documentation</a>. |
| 65 | + </li> |
| 66 | + </ol> |
| 67 | + <p> |
| 68 | + <a href="https://trailcode.github.io/ZombiGeoSim/index.html" class="cool-button">Launch Zombi GeoSim</a> |
| 69 | + </p> |
6 | 70 | </body> |
7 | 71 | </html> |
0 commit comments