-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhalibut.html
65 lines (49 loc) · 1.26 KB
/
halibut.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
<!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="raymarcher.js"></script>
<script>
var rm;
function init() {
rm = new RayMarcher();
rm.loadFragmentShader("glsl/halibut.glsl", function (scope) {
scope.setTexture( "map", "img/matcap.png" );
} );
document.body.appendChild( rm.domElement );
rm.camera.position.set( 10, 18, -8 );
window.addEventListener( "resize", onResize, false );
onResize();
}
function onResize(e){
rm.setSize( window.innerWidth, window.innerHeight );
}
function animate() {
requestAnimationFrame( animate );
var s = .01;
rm.target.z += s;
rm.camera.position.z += s;
rm.update();
rm.render();
}
init();
animate();
</script>
</body>
</html>