-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 2.97 KB
/
index.html
File metadata and controls
71 lines (71 loc) · 2.97 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en-us">
<head>
<title>Trailcode's Projects</title>
<meta charset="UTF-8">
<meta name="description" content="Zombie GeoSim: A WebAssembly-powered geospatial simulation.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.cool-button {
display: inline-block;
padding: 0.75em 2em;
margin: 0.5em 0;
font-size: 1.1em;
font-weight: bold;
color: #fff;
background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
border: none;
border-radius: 30px;
box-shadow: 0 4px 14px 0 rgba(0,118,255,0.15);
text-decoration: none;
transition: background 0.3s, transform 0.2s;
cursor: pointer;
}
.cool-button:hover, .cool-button:focus {
background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
transform: translateY(-2px) scale(1.04);
box-shadow: 0 6px 20px 0 rgba(0,118,255,0.25);
outline: none;
}
</style>
</head>
<body>
<hr />
<h1>EzyCad</h1>
<p>
<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.
<br /><br />
<a href="EzyCad/EzyCad.html" class="cool-button">Launch EzyCad</a>
<br /><br />
<a href="https://github.com/trailcode/EzyCad" target="_blank">View EzyCad on GitHub</a>
</p>
<hr />
<h1>Zombi GeoSim</h1>
<p>
<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.
</p>
<p>
<a href="https://www.youtube.com/watch?v=s0unMIQUs1U" target="_blank">
<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;" />
</a>
<br />
<small>YouTube video of current native development version.</small>
</p>
<h2>How to Use</h2>
<ol>
<li>Click the link below to launch the Zombi GeoSim application.</li>
<li><strong>Be patient and allow the application time to load.</strong></li>
<li>Mouse scroll <strong>zooms in and out</strong>.</li>
<li>Hold down the <strong>"alt"</strong> key and move the mouse to <strong>pan</strong> the view.</li>
<li>Hold down the <strong>"shift"</strong> key and move the mouse to <strong>rotate the camera</strong>.</li>
<li>Use the available tools to modify parameters, visualize data, and run simulations in real-time.</li>
<li>
For more advanced usage, refer to the
<a href="https://github.com/trailcode/webAsmPlay/blob/master/readme.md" target="_blank">webAsmPlay documentation</a>.
</li>
</ol>
<p>
<a href="https://trailcode.github.io/ZombiGeoSim/index.html" class="cool-button">Launch Zombi GeoSim</a>
</p>
</body>
</html>