-
Notifications
You must be signed in to change notification settings - Fork 113
/
demo.html
118 lines (102 loc) · 4.33 KB
/
demo.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<script src='vendor/three.js/build/three.min.js'></script>
<script src='vendor/three.js/examples/js/renderers/Projector.js'></script>
<script src='bower_components/threex.suzanne/threex.suzanne.js'></script>
<script src='../threex.domevents.js'></script>
<body style='margin: 0px; background-color: #bbbbbb; overflow: hidden;'>
<div style='position: absolute; padding-left: 10px; font-size:200%; color: white;'>
<strong>Received Events :</strong>
<div id='logs'></div>
</div>
<script>
var renderer = new THREE.WebGLRenderer()
renderer.setSize( window.innerWidth, window.innerHeight )
document.body.appendChild( renderer.domElement )
var onRenderFcts= []
var scene = new THREE.Scene()
var camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.01, 1000)
camera.position.z = 3
//////////////////////////////////////////////////////////////////////////////////
// set 3 point lighting //
//////////////////////////////////////////////////////////////////////////////////
;(function(){
// add a ambient light
var light = new THREE.AmbientLight( 0x020202 )
scene.add( light )
// add a light in front
var light = new THREE.DirectionalLight('white', 1)
light.position.set(0.5, 0.5, 2)
scene.add( light )
// add a light behind
var light = new THREE.DirectionalLight('white', 0.75)
light.position.set(-0.5, -0.5, -2)
scene.add( light )
})()
//////////////////////////////////////////////////////////////////////////////////
// init domEvents //
//////////////////////////////////////////////////////////////////////////////////
var domEvents = new THREEx.DomEvents(camera, renderer.domElement)
//////////////////////////////////////////////////////////////////////////////////
// comment //
//////////////////////////////////////////////////////////////////////////////////
THREEx.Suzanne.baseUrl = 'bower_components/threex.suzanne/'
new THREEx.Suzanne.GeometryLoader(function onLoad(geometry){
// notify the geometry need to update normals
geometry.computeFaceNormals()
geometry.computeVertexNormals()
geometry.normalsNeedUpdate = true
// create a mesh with it
var material = new THREE.MeshPhongMaterial({
shading : THREE.SmoothShading,
})
var mesh = new THREE.Mesh( geometry, material )
mesh.scale.multiplyScalar(2)
// attach mesh to the scene
scene.add(mesh)
//////////////////////////////////////////////////////////////////////////////////
// display the events log //
//////////////////////////////////////////////////////////////////////////////////
THREEx.DomEvents.eventNames.forEach(function(eventName){
if( eventName === 'mousemove' ) return
domEvents.addEventListener(mesh, eventName, function(event){
var domElement = document.querySelector('#logs')
domElement.innerHTML = event.type + '<br/>' + domElement.innerHTML
}, false)
})
})
//////////////////////////////////////////////////////////////////////////////////
// Camera Controls //
//////////////////////////////////////////////////////////////////////////////////
var mouse = {x : 0, y : 0}
document.addEventListener('mousemove', function(event){
mouse.x = (event.clientX / window.innerWidth ) - 0.5
mouse.y = (event.clientY / window.innerHeight) - 0.5
}, false)
onRenderFcts.push(function(delta, now){
camera.position.x += (mouse.x*5 - camera.position.x) * (delta*3)
camera.position.y += (mouse.y*5 - camera.position.y) * (delta*3)
camera.lookAt( scene.position )
})
//////////////////////////////////////////////////////////////////////////////////
// render the scene //
//////////////////////////////////////////////////////////////////////////////////
onRenderFcts.push(function(){
renderer.render( scene, camera );
})
//////////////////////////////////////////////////////////////////////////////////
// loop runner //
//////////////////////////////////////////////////////////////////////////////////
var lastTimeMsec= null
requestAnimationFrame(function animate(nowMsec){
// keep looping
requestAnimationFrame( animate );
// measure time
lastTimeMsec = lastTimeMsec || nowMsec-1000/60
var deltaMsec = Math.min(200, nowMsec - lastTimeMsec)
lastTimeMsec = nowMsec
// call each update function
onRenderFcts.forEach(function(onRenderFct){
onRenderFct(deltaMsec/1000, nowMsec/1000)
})
})
</script></body>