-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·38 lines (28 loc) · 1.06 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta name="google-site-verification" content="xfx4ICrx1BhQKntCsfSkTmncyJkqD1NlJJvGA57__BA" />
<meta name="yandex-verification" content="d76cc6a382ca7416" />
<script src="p5.js"></script>
<script src="raycast.js"></script>
<!-- <script src="canvas.js"></script> -->
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div id="gameWindow">
</div>
<h1>Raycasting with JavaScript and p5.js</h1>
<p>
This is a raycasting demo made with javascript using the p5.js framework.
</p>
<p>Check out the <a href="https://github.com/Magoninho/raycasting-js">GitHub repository</a></p>
<h2>Credits</h2>
<p>Made by Magoninho</p>
<ul>
<li>Gustavo Pezzi from pikuma.com.</li>
<li>javidx9 from One Lone Coder.</li>
<li>Daniel Shiffman from The coding train.</li>
<li>Lode's Computer Graphics Tutorial (I didn't use his method, but it was useful for the main concepts of raycasting).</li>
</ul>
</body>
</html>