forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebgl_clipping_advanced.html
433 lines (280 loc) · 9.83 KB
/
webgl_clipping_advanced.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - clipping planes - advanced</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
</head>
<body>
<script type="module">
import * as THREE from '../build/three.module.js';
import Stats from './jsm/libs/stats.module.js';
import { GUI } from './jsm/libs/dat.gui.module.js';
import { OrbitControls } from './jsm/controls/OrbitControls.js';
function planesFromMesh( vertices, indices ) {
// creates a clipping volume from a convex triangular mesh
// specified by the arrays 'vertices' and 'indices'
const n = indices.length / 3,
result = new Array( n );
for ( let i = 0, j = 0; i < n; ++ i, j += 3 ) {
const a = vertices[ indices[ j ] ],
b = vertices[ indices[ j + 1 ] ],
c = vertices[ indices[ j + 2 ] ];
result[ i ] = new THREE.Plane().
setFromCoplanarPoints( a, b, c );
}
return result;
}
function createPlanes( n ) {
// creates an array of n uninitialized plane objects
const result = new Array( n );
for ( let i = 0; i !== n; ++ i )
result[ i ] = new THREE.Plane();
return result;
}
function assignTransformedPlanes( planesOut, planesIn, matrix ) {
// sets an array of existing planes to transformed 'planesIn'
for ( let i = 0, n = planesIn.length; i !== n; ++ i )
planesOut[ i ].copy( planesIn[ i ] ).applyMatrix4( matrix );
}
function cylindricalPlanes( n, innerRadius ) {
const result = createPlanes( n );
for ( let i = 0; i !== n; ++ i ) {
const plane = result[ i ],
angle = i * Math.PI * 2 / n;
plane.normal.set(
Math.cos( angle ), 0, Math.sin( angle ) );
plane.constant = innerRadius;
}
return result;
}
const planeToMatrix = ( function () {
// creates a matrix that aligns X/Y to a given plane
// temporaries:
const xAxis = new THREE.Vector3(),
yAxis = new THREE.Vector3(),
trans = new THREE.Vector3();
return function planeToMatrix( plane ) {
const zAxis = plane.normal,
matrix = new THREE.Matrix4();
// Hughes & Moeller '99
// "Building an Orthonormal Basis from a Unit Vector."
if ( Math.abs( zAxis.x ) > Math.abs( zAxis.z ) ) {
yAxis.set( - zAxis.y, zAxis.x, 0 );
} else {
yAxis.set( 0, - zAxis.z, zAxis.y );
}
xAxis.crossVectors( yAxis.normalize(), zAxis );
plane.coplanarPoint( trans );
return matrix.set(
xAxis.x, yAxis.x, zAxis.x, trans.x,
xAxis.y, yAxis.y, zAxis.y, trans.y,
xAxis.z, yAxis.z, zAxis.z, trans.z,
0, 0, 0, 1 );
};
} )();
// A regular tetrahedron for the clipping volume:
const Vertices = [
new THREE.Vector3( + 1, 0, + Math.SQRT1_2 ),
new THREE.Vector3( - 1, 0, + Math.SQRT1_2 ),
new THREE.Vector3( 0, + 1, - Math.SQRT1_2 ),
new THREE.Vector3( 0, - 1, - Math.SQRT1_2 )
],
Indices = [
0, 1, 2, 0, 2, 3, 0, 3, 1, 1, 3, 2
],
Planes = planesFromMesh( Vertices, Indices ),
PlaneMatrices = Planes.map( planeToMatrix ),
GlobalClippingPlanes = cylindricalPlanes( 5, 2.5 ),
Empty = Object.freeze( [] );
let camera, scene, renderer, startTime, stats,
object, clipMaterial,
volumeVisualization,
globalClippingPlanes;
function init() {
camera = new THREE.PerspectiveCamera(
36, window.innerWidth / window.innerHeight, 0.25, 16 );
camera.position.set( 0, 1.5, 3 );
scene = new THREE.Scene();
// Lights
scene.add( new THREE.AmbientLight( 0xffffff, 0.3 ) );
const spotLight = new THREE.SpotLight( 0xffffff, 0.5 );
spotLight.angle = Math.PI / 5;
spotLight.penumbra = 0.2;
spotLight.position.set( 2, 3, 3 );
spotLight.castShadow = true;
spotLight.shadow.camera.near = 3;
spotLight.shadow.camera.far = 10;
spotLight.shadow.mapSize.width = 1024;
spotLight.shadow.mapSize.height = 1024;
scene.add( spotLight );
const dirLight = new THREE.DirectionalLight( 0xffffff, 0.5 );
dirLight.position.set( 0, 2, 0 );
dirLight.castShadow = true;
dirLight.shadow.camera.near = 1;
dirLight.shadow.camera.far = 10;
dirLight.shadow.camera.right = 1;
dirLight.shadow.camera.left = - 1;
dirLight.shadow.camera.top = 1;
dirLight.shadow.camera.bottom = - 1;
dirLight.shadow.mapSize.width = 1024;
dirLight.shadow.mapSize.height = 1024;
scene.add( dirLight );
// Geometry
clipMaterial = new THREE.MeshPhongMaterial( {
color: 0xee0a10,
shininess: 100,
side: THREE.DoubleSide,
// Clipping setup:
clippingPlanes: createPlanes( Planes.length ),
clipShadows: true
} );
object = new THREE.Group();
const geometry = new THREE.BoxGeometry( 0.18, 0.18, 0.18 );
for ( let z = - 2; z <= 2; ++ z )
for ( let y = - 2; y <= 2; ++ y )
for ( let x = - 2; x <= 2; ++ x ) {
const mesh = new THREE.Mesh( geometry, clipMaterial );
mesh.position.set( x / 5, y / 5, z / 5 );
mesh.castShadow = true;
object.add( mesh );
}
scene.add( object );
const planeGeometry = new THREE.PlaneGeometry( 3, 3, 1, 1 ),
color = new THREE.Color();
volumeVisualization = new THREE.Group();
volumeVisualization.visible = false;
for ( let i = 0, n = Planes.length; i !== n; ++ i ) {
const material = new THREE.MeshBasicMaterial( {
color: color.setHSL( i / n, 0.5, 0.5 ).getHex(),
side: THREE.DoubleSide,
opacity: 0.2,
transparent: true,
// clip to the others to show the volume (wildly
// intersecting transparent planes look bad)
clippingPlanes: clipMaterial.clippingPlanes.
filter( function ( _, j ) {
return j !== i;
} )
// no need to enable shadow clipping - the plane
// visualization does not cast shadows
} );
const mesh = new THREE.Mesh( planeGeometry, material );
mesh.matrixAutoUpdate = false;
volumeVisualization.add( mesh );
}
scene.add( volumeVisualization );
const ground = new THREE.Mesh( planeGeometry,
new THREE.MeshPhongMaterial( {
color: 0xa0adaf, shininess: 10 } ) );
ground.rotation.x = - Math.PI / 2;
ground.scale.multiplyScalar( 3 );
ground.receiveShadow = true;
scene.add( ground );
// Renderer
const container = document.body;
renderer = new THREE.WebGLRenderer();
renderer.shadowMap.enabled = true;
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
window.addEventListener( 'resize', onWindowResize );
container.appendChild( renderer.domElement );
// Clipping setup:
globalClippingPlanes = createPlanes( GlobalClippingPlanes.length );
renderer.clippingPlanes = Empty;
renderer.localClippingEnabled = true;
// Stats
stats = new Stats();
container.appendChild( stats.dom );
// Controls
const controls = new OrbitControls( camera, renderer.domElement );
controls.minDistance = 1;
controls.maxDistance = 8;
controls.target.set( 0, 1, 0 );
controls.update();
// GUI
const gui = new GUI(),
folder = gui.addFolder( "Local Clipping" ),
props = {
get 'Enabled'() {
return renderer.localClippingEnabled;
},
set 'Enabled'( v ) {
renderer.localClippingEnabled = v;
if ( ! v ) volumeVisualization.visible = false;
},
get 'Shadows'() {
return clipMaterial.clipShadows;
},
set 'Shadows'( v ) {
clipMaterial.clipShadows = v;
},
get 'Visualize'() {
return volumeVisualization.visible;
},
set 'Visualize'( v ) {
if ( renderer.localClippingEnabled )
volumeVisualization.visible = v;
}
};
folder.add( props, 'Enabled' );
folder.add( props, 'Shadows' );
folder.add( props, 'Visualize' ).listen();
gui.addFolder( "Global Clipping" ).
add( {
get 'Enabled'() {
return renderer.clippingPlanes !== Empty;
},
set 'Enabled'( v ) {
renderer.clippingPlanes = v ?
globalClippingPlanes : Empty;
}
}, "Enabled" );
// Start
startTime = Date.now();
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function setObjectWorldMatrix( object, matrix ) {
// set the orientation of an object based on a world matrix
const parent = object.parent;
scene.updateMatrixWorld();
object.matrix.copy( parent.matrixWorld ).invert();
object.applyMatrix4( matrix );
}
const transform = new THREE.Matrix4(),
tmpMatrix = new THREE.Matrix4();
function animate() {
const currentTime = Date.now(),
time = ( currentTime - startTime ) / 1000;
requestAnimationFrame( animate );
object.position.y = 1;
object.rotation.x = time * 0.5;
object.rotation.y = time * 0.2;
object.updateMatrix();
transform.copy( object.matrix );
const bouncy = Math.cos( time * .5 ) * 0.5 + 0.7;
transform.multiply(
tmpMatrix.makeScale( bouncy, bouncy, bouncy ) );
assignTransformedPlanes(
clipMaterial.clippingPlanes, Planes, transform );
const planeMeshes = volumeVisualization.children;
for ( let i = 0, n = planeMeshes.length; i !== n; ++ i ) {
tmpMatrix.multiplyMatrices( transform, PlaneMatrices[ i ] );
setObjectWorldMatrix( planeMeshes[ i ], tmpMatrix );
}
transform.makeRotationY( time * 0.1 );
assignTransformedPlanes( globalClippingPlanes, GlobalClippingPlanes, transform );
stats.begin();
renderer.render( scene, camera );
stats.end();
}
init();
animate();
</script>
</body>
</html>