-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwalker.html
98 lines (72 loc) · 2.03 KB
/
walker.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, shrink-to-fit=0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title></title>
<style>
head, body{
width:100%;
height:100%;
overflow: hidden;
top:0;
left:0;
margin:0;
padding:0;
}
</style>
</head>
<body>
<script src="vendor/three.min.js"></script>
<script src="vendor/controls/OrbitControls.js"></script>
<script src="raymarcher.js"></script>
<script src="composer.js"></script>
<script src="assets/walker/Walker.js"></script>
<script>
var rm;
var co;
var walker;
function init() {
rm = new RayMarcher( 36,.1 );
rm.loadFragmentShader("glsl/walker.glsl", onFragmentLoaded );
co = new THREE.OrbitControls( rm.camera );
co.minDistance = 18;
co.maxDistance = 24;
co.minPolarAngle = Math.PI / 4 - Math.PI / 12;
co.maxPolarAngle = Math.PI / 2 - Math.PI / 8;
rm.camera.position.x = 6;
rm.camera.position.y = 10;
rm.camera.position.z = 12;
document.body.appendChild( rm.domElement );
window.addEventListener( "resize", onResize, false );
onResize();
}
function onFragmentLoaded( scope )
{
walker = new Walker(scope);
walker.update();
var path = "img/cubemap/cube03_";
var format = '.png';
var urls = [
path + '0' + format, path + '1' + format,
path + '2' + format, path + '3' + format,
path + '4' + format, path + '5' + format
];
scope.setCubemap( "cubemap", urls );
animate();
}
function onResize(e)
{
rm.setSize( window.innerWidth, window.innerHeight );
}
function animate() {
requestAnimationFrame( animate );
co.update();
walker.update();
rm.update();
rm.render();
}
init();
</script>
</body>
</html>